Difference between revisions of "Eye Controlled Interaction"

From REALab Wiki
Jump to navigation Jump to search
(Created page with "main pain for eye controlled interaction; in-depth explanation on how to use")
 
Line 1: Line 1:
main pain for eye controlled interaction; in-depth explanation on how to use
main pain for eye controlled interaction; in-depth explanation on how to use
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);

Revision as of 20:32, 3 December 2012

main pain for eye controlled interaction; in-depth explanation on how to use

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);