Recognize recurring images into a larger one

前端 未结 3 627
情书的邮戳
情书的邮戳 2020-12-10 19:20

Edit: this is not a duplicate of Determine if an image exists within a larger image, and if so, find it, using Python since I do not know the pattern beforehand<

3条回答
  •  庸人自扰
    2020-12-10 19:39

    You can try to use described keypoints (Sift/SURF/ORB/etc.) to find features in the image and try to detect the same features in the image. You can see such a result in How to find euclidean distance between keypoints of a single image in opencv where 3x the same image is present and features are detected and linked between those subimages automatically.

    In your image the result looks like

    so you can see that the different occurances of the same pattern is indeed automatically detected and linked.

    Next steps would be to group features to objects, so that the "whole" pattern can be extracted. Once you have a candidate for a pattern, you can extract a homography for each occurance of the pattern (with one reference candidate pattern) to verify that it is a pattern. One open problem is how to find such candidates. Maybe it is worth trying to find "parallel features", so keypoint matches that have parallel lines and/or same length lines (see image). Or maybe there is some graph theory approach.

    All in all, this whole approach will have some advantages and disadvantes:

    Advantages:

    • real world applicability - Sift and other keypoints are working quite well even with noise and some perspective effects, so chances are increased to find such patterns.

    Disadvantages

    • slow
    • parametric (define what it means that two features are successfully matched)
    • not suitable for all kind of patterns - your pattern must have some extractable keypoints

    Those are some thoughts and probably not complete ;)

    Unfortunately no full code yet for your concrete task, but I hope the idea is clear.

提交回复
热议问题