イメージラベラーを利用した顔パーツの検出について
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
現在、イメージラベラーを利用した機械学習を用いて以下のプログラムで画像のような結果が出ています。
そこで、RightEye、LeftEye、Mouthをそれぞれ最も高い精度の枠のみを表示させるにはどうすればよいのでしょうか。
それに加えて、それぞれのConfidenceの値も出せるようにしたいです。ご教授願います。
Imgfilename = strcat('画像');
img = imread(Imgfilename);
[bboxes,score,label] = detect(Face,img);
detectedImg = insertObjectAnnotation(img, 'Rectangle', bboxes, cellstr(label));
figure
imshow(detectedImg);
2 Kommentare
Atsushi Ueno
am 3 Feb. 2022
Verschoben: Atsushi Ueno
am 17 Aug. 2022
「スコアが高いほど、検出の信頼性が高いことを示します」との事なので、各々のラベル毎にscoreの値がより高いbboxesを選択すれば良いと思います。
Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!