使用 imdilate 和 imerode 的 Matlab 模式匹配

发布于 2024-12-18 17:45:49 字数 272 浏览 0 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蘸点软妹酱 2024-12-25 17:45:49

二值图像中的模式匹配可以使用 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

我喜欢麦丽素 2024-12-25 17:45:49

您可以使用strfind命令来匹配模式。如果您有一个数组 A,并且需要匹配 B 中的模式,
strfind(AB) 将返回 A 中匹配的索引

You can use strfind command to match the pattern. If you have an array A, and you need to match a pattern in B,
strfind(A B) will return the index of the match in A

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文