iOS image comparison

后端 未结 3 913
南旧
南旧 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.

    0 讨论(0)
  • 2021-01-16 06:11
    1. Yes, you identify, extract and quantify various aspects of human faces, such as distance between pupils, width of mouth, percentage of head height where tip of nose is, etc.
    2. There is a company, Luxand which makes software to do this, and I think they license it. Last time I looked (2009?) they didn't have an objective-c library. They do have an app that claims to merge faces from photograhs, so you can see what the offspring of any two people would look like, but it is very cheesy, with lots of hard-coded faces. (If you cross a dog with a tea-pot, you get the same baby-face as from crossing a 2 real faces.) AFAIK, there is nothing in the iOS SDK that does this.
    3. I would just Google "face recognition" and start reading. Good luck.
    0 讨论(0)
  • 2021-01-16 06:33
    1. face recognition are very difficult, you need to extract some kind of "features" and perform some measurement...iphone hardware isn't very appropriate for this job.
    2. yes, you can check here http://maniacdev.com/2011/11/tutorial-easy-face-detection-with-core-image-in-ios-5/ for a tutorial and here http://maniacdev.com/2011/12/open-source-library-for-adding-easy-face-to-your-ios-app-with-the-free-face-com-api/ for a free webservice. 3.i suggest you google scholar (http://scholar.google.it/scholar?q=face+recognition&hl=it&btnG=Cerca&lr=) but i think that if you want to write your own algorithm you need a lot o spare time :)
    0 讨论(0)
提交回复
热议问题