0

The scenario is,

There are two images and we are required to say whether one image is a subset of another image. In other words, image A is present within or part of image B.

We tried to use traditional bit by bit comparison, but it looks too time consuming. Is there any other image comparison algorithm in place that can help us? Thanks in advance for your responses.

1 Answers1

0

Check out SIFT and SURF descriptors to find keypoints in the images, and then match them across the two images.

Diana
  • 1,301
  • 1
  • 9
  • 21