How to asign class name to detection result?
조회 수: 1 (최근 30일)
이전 댓글 표시
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
답변 (1개)
Walter Roberson
2023년 5월 24일
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
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!