Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

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

1 Ansicht (letzte 30 Tage)
shorav suriyal
shorav suriyal am 28 Aug. 2017
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
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

Antworten (1)

Sailesh Sidhwani
Sailesh Sidhwani am 31 Aug. 2017
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 Kommentar
shorav suriyal
shorav suriyal am 1 Sep. 2017
I want to do with the help of kinect sensor for windows and it should look like this in the attached image

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by