How to compare two images with iphone sdk?

后端 未结 3 2002
栀梦
栀梦 2021-01-20 22:32

suppose i have taken one picture from my iphone camera and now i want to compare this image with other images and find best match image from that.

is it possible or

相关标签:
3条回答
  • 2021-01-20 22:56

    Are you just comparing the differences between the two images or are you trying to match objects in the images with objects in other images?

    If it's the latter then you may need to look into computer vision and stereo image analysis, particularly image rectification and point matching.

    Computer Vision - A Modern Approach by Jean Ponce and David Forsyth is a fairly good book.

    0 讨论(0)
  • 2021-01-20 23:01

    there is very less help available for the image processing algorithms in objectiveC, but you can go in deep with Quartz 2D and try to compare images even Image processing on the iPhone link may be helpful.

    0 讨论(0)
  • 2021-01-20 23:01

    There is nothing built into the SDK for comparing images, but any C library for image comparison can probably be used. This question has a good discussion on image comparison algorithms.

    0 讨论(0)
提交回复
热议问题