Replies: 1 comment 1 reply
-
Your task might be tackled using detection and matching. Simply, detect multiple targets in small template images, yielding bounding boxes. For each box, use its features to match with the large image using image matching and RANSAC. If sufficient matches are found, compute the homography matrix to map the box to the large image. Repeat for all boxes. However, issues may arise, such as significant scale changes between images requiring scale-invariant features, and multiple similar targets in the larger image may cause incorrect matches. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have several small template images and want to find the bounding boxes of similar objects in a large image. So it is not exactly trying to register an an image on top of another.
Can any of the algorithms be suitable for this task? How can the matched keypoints be turned into bounding boxes of the found similar objects?
@Vincentqyw
Beta Was this translation helpful? Give feedback.
All reactions