필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

how to get facial features particularly for eyes using kinect v1 sensor in matlab?

조회 수: 1 (최근 30일)
shorav suriyal
shorav suriyal 2017년 8월 28일
마감: MATLAB Answer Bot 2021년 8월 20일
I have installed all the packages related to kinect and my system is able to detect the sensor and now i want to use it to detect facial features mainly to get the point on the eyes. how do i do that ? please help
Thanks shorav

답변 (1개)

Sailesh Sidhwani
Sailesh Sidhwani 2017년 8월 31일
Hi Shorav,
You can feed the bounding box of the detected eyes to any one of the feature detectors in the Computer Vision System Toolbox. Here is an example of how to do this:
%Read the input image
I = imread('extract1.png');
%To detect Eyes
EyeDetect = vision.CascadeObjectDetector('EyePairBig');
BB=step(EyeDetect,I);
%Plot result
figure
imshow(I);
hold on;
rectangle('Position',BB,'LineWidth',4,'LineStyle','-','EdgeColor','b');
  댓글 수: 1
shorav suriyal
shorav suriyal 2017년 9월 1일
I want to do with the help of kinect sensor for windows and it should look like this in the attached image

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by