Borrar filtros
Borrar filtros

Counting people by face detection

6 visualizaciones (últimos 30 días)
amir
amir el 29 de En. de 2016
Editada: Walter Roberson el 29 de Abr. de 2020
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 comentarios
Assylbek Kossov
Assylbek Kossov el 10 de Abr. de 2018
Hi, Were you succesfull if so could send the code please? I am a beginner who is stuck with this task
Harshveer Singh
Harshveer Singh el 29 de Abr. de 2020
Editada: Walter Roberson el 29 de Abr. de 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);

Iniciar sesión para comentar.

Respuesta aceptada

Image Analyst
Image Analyst el 29 de En. de 2016
Editada: Image Analyst el 29 de En. de 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.

Más respuestas (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by