How to show labels names?

조회 수: 5 (최근 30일)
Adrian Kleffler
Adrian Kleffler 2023년 5월 19일
답변: Birju Patel 2023년 5월 25일
Hello everyone, I am running object detector in Matlab ... after running detector on test image the result looks like this :
But I want my program to show also names for each class ... for example if there is an airplane i want to see the confidence and name airplane also...
Here is my code which runs detector on one of the images :
I = imread(testDataTbl.imageFilename{94});
I = imresize(I,inputSize(1:2));
[bboxes,scores] = detect(detector,I);
I = insertObjectAnnotation(I,'rectangle',bboxes,scores);
figure
imshow(I)

답변 (2개)

Walter Roberson
Walter Roberson 2023년 5월 19일
FIrst (somehow) convert each score into its corresponding class name.
Then when you call insertObjectAnnotation pass the class name as the fourth parameter (where you are passing scores now)
  댓글 수: 1
Adrian Kleffler
Adrian Kleffler 2023년 5월 19일
Don’t you know how to convert it?

댓글을 달려면 로그인하십시오.


Birju Patel
Birju Patel 2023년 5월 25일
Any object detector that supports detection multple classes will return the labels as a third output argument:
[bboxes,scores,labels] = detect(detector,I);
You can create a string with the label and score:
str = string(labels) + ": " + scores;
I = insertObjectAnnotation(I,'rectangle',bboxes,str);

카테고리

Help CenterFile Exchange에서 Image and Video Ground Truth Labeling에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by