fdlibmex is a very simple face detection library for matlab. No toolboxes are required. The library consists of a single mex file with a single function that takes an image as input and outputs the locations of the frontal faces in the image.
The zip file includes mex files for the 32bit Windows, Linux and Mac platforms supported by Matlab, and an example script that illustrates the usage of the library.
Using the values stored in 'r', i have cut out the detected faces individually from some rgb images, and i am getting all faces in grayscale which is obvious because of the rgb2gray function i have used..
But is there any way to get those cut out faces in rgb ?? How to retain its original rgb composition after running the fdlibmex ??
Hi everyone.
I'm also trying to run the library demo on maci64, but there's no way to get it work.
It's some kind of problem with the mex file.
If someone could help it will be appreciate, thx!
hi, i met the problem of "Undefined function or method
'fdlibmex' for input arguments
of type 'uint8'.
Error in ==> fdlibmex_demo at 23
pos = fdlibmex(img);"
I guess the binary file is compiled in 32bit compiler. Is that right? If that is the case, would you please send me a version that could be used in 64bit linux machine? Thanks!
i got an error
??? Undefined function or method 'mblbp_featlist' for input arguments of type 'double'Can somebody help me to solve this problem.
thanks
mr wolf kienzle, im student in indonesia.now im do my final exame.but i have problem in face detection.mr wolf can i know the contain of fdlibmex.dll ??
thanks before.
cipto_jarwokatro@yahoo.com
m unable to c the image wid the face detected.
I have not used this part of the code
fprintf('\n--- fdlibmex example ---\n');
fprintf('\n\t%d faces detected in \''%s\'' (see figure 1)\n\n', ...
size(pos,1), imgfilename);
as its not clear how to use it
can u please help me wid this?
I tried to run the demo file but got an error "Undefined function or variable fdlibmex"
Do we need to load the dll library and if yes how to do this as the load library function requires a header which is no provided.
Please help.
if you don't get an error message, then everything should be working OK. If not, here's a few things you may want to check: Have you tested it with the example image I provided? Are the faces in your images large enough (about 25x25 pixels)? Are they somewhat evenly illuminated and frontal (not rotated, no side views)? Have you tried cranking up the detection threshold?
I was trying to use your code... but it didn't work for any of my test images. I am working with football (soccer) videos.. and I tested on some frames (640X480)...
Image quality is quite ok (not excellent). All are in JPEG extension (not JPG)... but no errors were given... I had to add extra code to change from RGB to Grayscale tho.
Do you know why this is happening? I was expecting it to work because of the many good reviews ure getting. Anyway... I still believe it could work. Maybe I need to add some things here and there? thankx
I'm doing my final year project on 'Image Processing Methods for facial recognition using Matlab'. I've got Visual Studio 2005 background but never used MatLab before. I've just started on with research, video tutorials and reading.
Can anyone please help me with a guide, where can I start this from? Does this face detection code helps?
Great work. Thanks for posting it. Are you using still using the Rank Deficient Faces algorithm? If this is another algorithm can you provide a reference at this point?
bhupala: the library cannot detect eyes and nose directly. but the face detection result should be a good starting point for where to look for eyes, nose, etc.
james: thanks! the algorithm uses a cascaded classifier, however, unlike viola/jones, it does not use integral images or haar wavelets. i hope i will manage to write up something soon. when that happens, i'll definitely post a link in here. :)
Great program, its reliable and quick. I was wondering if you know when you are going to publish a journal? Also is you algorithm based on a particular type of face detection (e.g. active shape modeling or image integrals...)
there is an optional sensitivity parameter, you just call pos = fdlibmex(img, threshold). threshold makes most sense around -10..10.
unfortunately, there are no scores :( however, you can get an idea of the confidence by running the detector again with a higher threshold and checking which detections remain.
Nice work on the face detector, seems to work well! Two questions though: (1) Is there any way gain access to parameters to adjust for precision and (2) are there any scores / confidences attached to each face detection?
Thanks,
Angela
13 Sep 2008
Help the Noob
HI
I am very curious of me but and want to
try out this stuff...
but do i need Mathworks Matlab R2008a to make this work?
05 Sep 2008
Jordi Palacin
Very nice and fast.
03 Sep 2008
Peter Gehler
Worked out of the box with good results
12 Aug 2008
Wolf Kienzle
The library implements a new algorithm (i.e. not Viola/Jones or the like) that has not been published yet. That's why there are no references, sorry.
10 Aug 2008
Sebastien PARIS
Why don't you offer the source code ? or indicate any references ?.