使用 imdilate 和 imerode 的 Matlab 模式匹配
我是 Matlab 新手,所以这应该是一个简单的问题。
我想在二进制图像中搜索特定模式。假设我正在寻找模式 [1 0; 0 1; 1 0; 0 1]。我用 strel 制作了一个具有特定模式的结构元素。当我将 imerode 与此模式一起使用时,它将匹配零但忽略那些,例如它将匹配 [0 0; 0 0; 0 0; 0 0] 也一样。这同样适用于带有 1 的 imdilate 我怎样才能同时组合两者来找到 1 和 0 的精确模式。 我已经尝试过 imopen 和 imclose 但不起作用。
谢谢
im new to Matlab so this should be a simple question.
I want to search a binary image for a specific pattern. Lets say I´m looking for the pattern [1 0; 0 1; 1 0; 0 1]. I made a structuring element with strel with the specific pattern. When i use imerode with this pattern, it will match the zeros but ignores the ones, for example it will match [0 0; 0 0; 0 0; 0 0] too .The same applies for imdilate with ones How can i combine the two at the same time to find the exact pattern of 1s and 0s.
I have already tried imopen and imclose and it does not work.
thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
二值图像中的模式匹配可以使用 bwhitmiss(命中-未命中操作)来完成。它接受包含 one(1)、zeros(-1) 和 don´t care(0) 元素的内核。
http://www.mathworks.es/help/toolbox/images/ref /bwhitmiss.html
Pattern match in binary image can be done using bwhitmiss (hit-miss operation). It accepts a kernel that contain ones(1) zeros(-1) and don´t care(0) elements.
http://www.mathworks.es/help/toolbox/images/ref/bwhitmiss.html
您可以使用
strfind
命令来匹配模式。如果您有一个数组A
,并且需要匹配B
中的模式,strfind(AB)
将返回A
中匹配的索引You can use
strfind
command to match the pattern. If you have an arrayA
, and you need to match a pattern inB
,strfind(A B)
will return the index of the match inA