Filter löschen
Filter löschen

how to track eyes in real time?

4 Ansichten (letzte 30 Tage)
Nimisha
Nimisha am 27 Mär. 2018
Kommentiert: Amir Dehsarvi am 14 Mai 2019
vid = videoinput('winvideo', 1);
start(vid);
capt1 = getsnapshot(vid);
FDetect = vision.CascadeObjectDetector;
BB = step(FDetect,capt1);
for i = 1:size(BB,1)
rectangle('Position',BB(i,:),'LineWidth',5,'LineStyle','-','EdgeColor','r');
end
title('Eye Detection');
hold off;
preview(vid)
i have written above code for Real time eye tracking. But it gives error. If anyone can help me to trace in real time.!

Antworten (0)

Kategorien

Mehr zu Programming finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by