Why my 'bboxes' and 'scores' variables are all empty while certainly my image contains a person?

조회 수: 1 (최근 30일)
Hi,
This is my example image clearly with a person in it.
I would like to use Matlab's 'people detector' to detect the person in the image.
So I tried:
peopleDetector = vision.PeopleDetector;
I = imread('executive1.jpg');
[bboxes,scores] = step(peopleDetector,I);
I was hoping 'bboxes' could give me the position so that I could draw a box around the human in the image. However, 'bboxes' and 'scores' are all empty which I don't understand.
I'm a beginner to human detection. Please help.

채택된 답변

Alex Mcaulley
Alex Mcaulley 2019년 7월 24일
Have you tried changing the peopledetector properties? For example, you get a result just changing the model:
peopleDetector = vision.PeopleDetector('ClassificationModel','UprightPeople_96x48');
I = imread('executive1.jpeg');
[bboxes,scores] = step(peopleDetector,I);
bboxes =
103 66 73 125

추가 답변 (1개)

Matt J
Matt J 2019년 7월 24일
편집: Matt J 2019년 7월 24일
SVMs are allegedly poorer than neural net classifiers, but this helped,
I=imresize(I,[760,1064]);
peopleDetector = vision.PeopleDetector('UprightPeople_96x48','MinSize',[128,96]*2);

카테고리

Help CenterFile Exchange에서 Computer Vision Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by