views:

35

answers:

2

I want to detect one kind of object such as person in the picture, who can tell me how to training a kind of people classifier for use,so we can use the classifier to detect people in any picture.

+2  A: 

It's a pretty vague question but i think you're looking for a good computer vision library. The gold standard is OpenCV (Open Source Computer Vision). That'll get you started, and there's lots of people that have done facial recognition with it.

If you want to tell two people apart, that's a hugely more complicated problem. You'll likely use some of the same tools, but you'll need much more complicated algos.

pnewhook
+1  A: 

you can take a look at viola-jones framework: Viola-Jones Object Detection Framework at Wikipedia

it's cvHaarDetectObjects() in OpenCV.

Taz