Basic Face Detection and Face Recognition Using OpenCV
Loading...
8,414
Loading...
Uploader Comments (toefel18)
see all
All Comments (25)
-
@87sgeric nvm i solved it, i have to fill in the image extension. Thanks!!
-
could you get back to that email I sent you about openCV and my final year project thanks :)
-
@rebkahibasdeys you can modify the source code yourself, this app is meant to get ppl started with a working demo!
-
third query, any way i can save the output of this application??
Loading...
hi! i tested the .exe , why does it crash every time i tried saving a face? is there a fix directory I have to placed it in?
87sgeric 1 week ago
@87sgeric make sure the extension of the image is .bmp (without the extension, the application might crash)
toefel18 1 week ago
Thanks for the application. I have a question though. is there a way i can take frames from the eye, nose, and mouth detectors? Could you tell me how if possible
dhruvmini01 1 month ago
@dhruvmini01 the system provides frames to the detectors, they analyze it for features. The class DetailedFaceDetector first scans for faces, if it finds a face, it tries to find the eyes, nose and mouth. Basic detectors expose their findings trough the getAreas() method, but DetailedFaceDetector provides a getDetailedFaceInfo() method which returns a map that maps faces to a feature map, it looks like: (facerectangle => (facefeature=>featurerectangle)) you can look it up in google code.
toefel18 1 month ago
@TheRikkiJSmith i replied a while ago
toefel18 1 month ago
hey, i downloaded the zip source code given on the website.
can i modify the code to track, lets say a cup or a ball....
best.
if you could help me with that i'd be great...
rebkahibasdeys 2 months ago
@rebkahibasdeys Hey, you can use the visual-control source project at google code and write a new detector class that contains the code for detecting a ball, cup, or whatever. You can look at the FaceDetector class to see how I implemented the face detection. I used the HaarLike features detector, but that's slow for tracking a ball. I am sure you can find much more efficient methods for that!, good luck.
toefel18 2 months ago