How to label multiple objects in object detection with different names?

5 vues (au cours des 30 derniers jours)
Hi there!
I've a problem with labelling my objects in an image.
Let's have a look at the image:
TestFotoprobleem.PNG
This programme is detecting front/rear of the cars and a stop sign. I want the labels to say what they're looking at. For example: "Stop Sign Confidence: 1.0000", CarRear Confidence: 0.6446 and etc. As you may see, my programme adds the probability factors correctly. But there are still no strings/labelnames attached.
You can have a look at my code:
%%
% Read test image
testImage = imread('StopSignTest2.jpg');
% Detect stop signs
[bboxes,score,label] = detect(rcnn,testImage,'MiniBatchSize',128)
% Display detection results
label_str = cell(3,1);
conf_val = [score];
conf_lab = [label];
for ii=1:3
label_str{ii} = [ ' Confidence: ' num2str(conf_val(ii), '%0.4f')];
end
position = [bboxes];
outputImage = insertObjectAnnotation(testImage,'rectangle',position,label_str,...
'TextBoxOpacity',0.9,'FontSize',10);
figure
imshow(outputImage)
%%
I have NO clue in how to add strings in the label_str{ii} like the way I did with scores (num2str(conf_val(ii)).
Thanking you in advance!
  2 commentaires
Sarannya Udhayakumar
Sarannya Udhayakumar le 7 Avr 2020
Modifié(e) : Sarannya Udhayakumar le 7 Avr 2020
hello... how to detect multiple objects in RCNN???
pls rply
Image Analyst
Image Analyst le 23 Avr 2020
Maybe there is only one object in your image.

Connectez-vous pour commenter.

Réponse acceptée

Image Analyst
Image Analyst le 17 Déc 2018
If insertObjectAnnotation() is not working, then use text().
  1 commentaire
Banchon Sripanha
Banchon Sripanha le 18 Déc 2018
Thanks for the response! Much appreciated.
I've fixed the problem by the following line code:
conf_val = [score];
conf_lab = [label];
for ii=1:3
label_str{ii} = [sprintf('%s', conf_lab(ii)) ' Confidence: ' num2str(conf_val(ii), '%0.4f')];

Connectez-vous pour commenter.

Plus de réponses (2)

Quoc-Bao Ta
Quoc-Bao Ta le 25 Sep 2019
Modifié(e) : Quoc-Bao Ta le 25 Sep 2019
Hello, How can i change the colors of bounding box?
  1 commentaire
Image Analyst
Image Analyst le 24 Août 2024
@Quoc-Bao Ta, use the AnnotationColor option of insertObjectAnnotation.
outputImage = insertObjectAnnotation(testImage,'rectangle',position,label_str,...
'TextBoxOpacity',0.9,'FontSize',10, ...
'LineWidth', 2, 'AnnotationColor', 'r');

Connectez-vous pour commenter.


Onurcan
Onurcan le 23 Août 2024
hi, is it possible that you can share the code for multiple class detection. I've been trying but couldnt figure it out. I can only train one object but more than one doesnt work. please help

Community Treasure Hunt

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

Start Hunting!

Translated by