How can I get the 20 facial feature points?
조회 수: 3 (최근 30일)
이전 댓글 표시
i already try this code:
%{
corners=detectHarrisFeatures(face);
[features,valid_corners]=extractFeatures(face,corners);
figure, imshow(face);
hold on;
plot (valid_corners);
hold off;
%}
however, the output points are scattered.

how can i get exactly like this? can anyone help me with the code, please?

댓글 수: 4
답변 (1개)
Image Analyst
2018년 5월 21일
Find a published paper here in vision bib where someone solved it, and program up their algorithm (rather than yours). It's not going to be some simple 6 line program though.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Computer Vision Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!