0

Simply stated, I have to match images based on similarities. So if two images of different size happen to be the same, or if they differ only by watermark, they can be matched as the same.

I know python must have at least a starting implementation of this, but I cannot seem to find it. What would this be called in python-ese or imaging science?

1Up
  • 994
  • 2
  • 12
  • 24
  • There is a book about "Programming Computer Vision with Python" published by O'Reilly that surely must touch on some of this. – John Coleman Jul 28 '15 at 02:51

1 Answers1

4

You can try OpenCV which has a Python interface. See this question for using OpenCV to do image matching: Checking images for similarity with OpenCV.

Community
  • 1
  • 1
XiaoChuan Yu
  • 3,951
  • 1
  • 32
  • 44