How to asign class name to detection result?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello guys, after running YOLOv4 detector which I made with help of example on MathWorks page, I run detector on test image and it shows the labels also the score for each label but doesn’t show the name of the predicted class… how to add the class name for each label in results?
0 commentaires
Réponses (1)
Walter Roberson
le 24 Mai 2023
Second output of max() can tell you the index of the most probable class. Then you can use the index to index the class names.
classnames = ["Ruby"; "Zattar"; "Swing"; "BobbleHead"];
classvals = rand(10, length(classnames)) %except for you classvals would be output from classification
[~, classidx] = max(classvals, [], 2);
detected_class = classnames(classidx)
0 commentaires
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!