vote up 2 vote down star
1

Can anyone tell me how to detect faces in a static picture using Ruby or Javascript?

flag

0% accept rate
3  
WOW! And I thought I was the only one reaching for impossible goals. :-) – Workshop Alex Sep 9 at 13:46
I can detect faces even without Ruby. – StackedCrooked Sep 9 at 18:22
Simple solution: You don't. Complex solution: Use something existing. (Near) Impossible solution: Write something on your own. If you have nothing better to do. – Rakesh Pai Sep 9 at 22:25

6 Answers

vote up 2 vote down

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).

link|flag
See it's nothing wrong... if something is not known,frankly tell i am not knowing this... – palani Sep 9 at 14:25
I admire your enthusiasm, I just want to warn you that face recognition is a difficult problem. – joeforker Sep 9 at 14:58
vote up 2 vote down

Javascript Neural Nets have been used for OCR so should be possible if much harder for faces.

link|flag
vote up 4 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
yes.. .thats the way to go..:D – Rishav Rastogi Sep 9 at 14:02
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
Javascript!? – voyager Sep 9 at 13:46
2  
I have nothing against javascript, but using it for face recognition is like trying to screw a nail. – voyager Sep 9 at 13:47
4  
JQuery is better. $('image.png').getFaces(); – Welbog Sep 9 at 13:48
@Welbog: Oh! Of course, but I think you have a bug. Shouldn't it be $('#faces img').getFaces(); ? – voyager Sep 9 at 13:50
oh ok. can please explain more ... because i am new to ROR & Jquery. – palani Sep 9 at 13:51
show 3 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.