Reputation: 2157
Lets say I have an image or two dimensional pattern similar to QRcode and call it a template. Now I have a set of subimages that I want to match with my template and what's important - find their precise location in the template. I think similar problem is being solved in 'smart papers' http://en.wikipedia.org/wiki/Anoto and in kinect's grid of infrared dot pattern.
Does anyone have some clues how something similar can be implemented (even just keywords to look up)?
I had few ideas:
Upvotes: 1
Views: 613
Reputation: 75625
QRCodes are square. Using feature detection to find the grid, you can unproject it. Then opencv's template matching will work fine.
Upvotes: 1