Counting people by face detection
2 views (last 30 days)
Show older comments
Hello,
So far I have detected the faces with a bounding box around people faces. I was looking for a way to count the number of boxes appeared in the video as to return the number of people. Is there anyway to do this? Thank you.
2 Comments
Assylbek Kossov
on 10 Apr 2018
Hi, Were you succesfull if so could send the code please? I am a beginner who is stuck with this task
Harshveer Singh
on 29 Apr 2020
Edited: Walter Roberson
on 29 Apr 2020
After insering annotations, use a string to count the number of faces. This can be done as follows-
n= size (bbox,1); %bbox is the bounding box & 1 represents the no. of rows in bounding box
str_n= num2str(n);
str= strcat( 'number of faces are ', str_n);
display(str);
Accepted Answer
Image Analyst
on 29 Jan 2016
Edited: Image Analyst
on 29 Jan 2016
How did you do it? If you did it with bwlabel or beconncomp, you can get it from the return argument(s). If you used the Computer Vision System Toolbox example, I'm sure it's one of the returned properties.
see Brett's blog: http://blogs.mathworks.com/pick/2014/03/14/detecting-faces-in-images/?s_tid=answers_rc2
Also see this by Dima Lisin, the developer of the toolbox: http://blogs.mathworks.com/pick/2015/09/11/detect-and-track-multiple-faces/?s_tid=answers_rc2
0 Comments
More Answers (0)
See Also
Categories
Find more on Computer Vision with Simulink in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!