how to scan image for specific pattern
5 次查看(过去 30 天)
显示 更早的评论
回答(2 个)
Anand
2013-10-28
You can try something like this:
%the pattern you're looking for is B W B B B W B
template = logical([0 1 0 0 0 1 0]);
%find NCC of template with image BW
cc = normxcorr2(template,BW);
Then find peaks in cc to locate co-ordinates of the pattern.
2 个评论
Image Analyst
2013-10-28
编辑:Image Analyst
2013-10-28
I thought of that first also but then I realized that it wouldn't work if the QR bar code in the image isn't the same size and pattern as the pattern he's searching for. I believe he wants to locate any QR code, not just some code of a pattern and size that is known in advance. So if he can't specify in advance what to look for then he'll have to look to texture segmentation. Or else search the literature for papers like I mentioned in my comment.
Anand
2013-10-28
Yes, I agree. Bur since genesis mentioned that the scale specifically as 1:1:3:1:1 "pixels" I thought he might know more about his image data.
Image Analyst
2013-10-28
Try using stdfilt() to look for areas of high texture in the image.
1 个评论
Image Analyst
2013-10-28
You might try this:
Kato, Y.[Yuji], Deguchi, D.[Daisuke], Takahashi, T.[Tomokazu], Ide, I.[Ichiro], Murase, H.[Hiroshi], Low Resolution QR-Code Recognition by Applying Super-Resolution Using the Property of QR-Codes, ICDAR11(992-996).
By the way, if you do want to play around with normxcorr2 (which probably won't work in your situation) you can try the demo I attached below.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Processing Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!