iOS image comparison

后端 未结 3 934
南旧
南旧 2021-01-16 05:35

I am just doing some research into image processing and would appreciate it if someone could point me in the right direction. I want to compare image \'A\' which is a pictur

3条回答
  •  爱一瞬间的悲伤
    2021-01-16 06:09

    I would go with compiling openCV for the iPhone ( http://computer-vision-talks.com/2011/02/building-opencv-for-iphone-in-one-click/ ), and then implementing one of the classical ways to do face recognition like eigenfaces ( http://www.shervinemami.info/faceRecognition.html )

    But don't expect miracles the accuracy will be low, and the app will be slow.

    Also when you say face recognition is difficult doesn't the first link show how easy it is to detect faces on a picture?

    The face detection from the first link is just to detect the face. It is just to see if there is a face in the image, which then you can pass as input to the recognition algorithm.

提交回复
热议问题