Difference between revisions of "Eye Controlled Interaction"

From REALab Wiki
Jump to navigation Jump to search
Line 1: Line 1:
This program is useful for detecting position of eye gaze in real-time as real-time gaze within defined AOI's and eye gaze co-ordinates can be determined.
===Manual===
===Manual===
*[[media:ECI_Manual_EN.pdf‎|Eye Controlled Interacton Manual]]
*[[media:ECI_Manual_EN.pdf‎|Eye Controlled Interacton Manual]]

Revision as of 20:37, 3 December 2012

This program is useful for detecting position of eye gaze in real-time as real-time gaze within defined AOI's and eye gaze co-ordinates can be determined.

Manual

u = udp('127.0.0.1',65000,'LocalPort',65000, 'InputBufferSize', 409600); u.Terminator = 'LF/CR'; %tell it about line endings fopen(u);


A = fscanf(u); C =regexp(A, '\t', 'split');


fclose(u); delete(u);