Can anyone tell me how to detect faces in a static picture using Ruby or Javascript?
|
1
|
|||||||||
|
|
|
It looks like you are new to programming. Perhaps you have an advanced mathematics degree? If you really don't understand that the notion JQuery can detect faces is a joke, you need to learn a lot before you will be ready to detect faces. If you're lucky you can find an easy out-of-the-box solution. Unfortunately, face recognition is in the class of problems that tend to lack easy out of the box solutions. JavaScript is right out. http://rubyforge.org/projects/opencv/ is a Ruby binding to OpenCV. The pitiful documentation (autogenerated API docs only) at http://doc.blueruby.mydns.jp/opencv/ mentions a face_detect.rb that might be helpful. As with most bindings, you should also consult the documentation for the original library e.g. http://opencv.willowgarage.com/wiki/FaceDetection You should also understand that face detection (where are the faces in this photo?) is a different and easier problem than face recognition (whose face is it). |
|||
|
|
Javascript Neural Nets have been used for OCR so should be possible if much harder for faces. |
||
|
|
|
|
If you are going to try and write something from scratch, there is a great explanation of the process on the Carnegie Mellon Website - neat graphics too. However, your best bet is probably trying to hook into the Opensource Computer Vision project. Here is a good tutorial on using OpenCV for facial recognition. |
|||
|
|
|
|
Collect a lot of cash and contact these guys for a good solution! Wikipedia has a good article about this which also explains why you're trying to do something that is still extremely complex to do. FRGC is also interesting... If you do find a solution, you can take part in this challenge. |
||
|
|
|
Unless you have a large amount of time to spend on this (at least a month) then definitely look at existing algorithms instead of developing your own. |
|||
|
|
|
|
Face detection is done using intensive memory based algorithms, which actually go through the image data to detect face like patterns. They may be many facial recognition / Pattern recoginition algorithms and APIS available for free (or for a fee) which you can use/implement with Ruby or Javascript. |
||||||||||||||
|
