イメージラベラーを利用した顔パーツの検出について

10 visualizzazioni (ultimi 30 giorni)
tsuyoshi tsunoda
tsuyoshi tsunoda il 3 Feb 2022
Spostato: Atsushi Ueno il 17 Ago 2022
現在、イメージラベラーを利用した機械学習を用いて以下のプログラムで画像のような結果が出ています。
そこで、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 Commenti
Atsushi Ueno
Atsushi Ueno il 3 Feb 2022
Spostato: Atsushi Ueno il 17 Ago 2022
「スコアが高いほど、検出の信頼性が高いことを示します」との事なので、各々のラベル毎にscoreの値がより高いbboxesを選択すれば良いと思います。
tsuyoshi tsunoda
tsuyoshi tsunoda il 3 Feb 2022
Spostato: Atsushi Ueno il 17 Ago 2022
その選択方法が分からず教えていただきたいです。
何度もすみません。

Accedi per commentare.

Risposte (0)

Tag

Community Treasure Hunt

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

Start Hunting!