source code for eye gaze detection in matlab
#1

i want to sourse code.PLEASE ALLOW ME TO DOWNLOAD ABOUT SOURSE CODE OF EYE GAZE COMMUNICATION SYSTEM
PLEAE GIVE ME SOURSE CODE OF EYE GAZE SYSTEM COMMUNICATION. DO NOT BLUF ME REPLY WITH SOURSE CODE.
Reply
#2
source code for eye gaze detection in matlab

Facial expressions convey non-verbal cues, which play an important role in interpersonal relations. Automatic recognition of facial expressions can be an important component of natural human-machine interfaces; it may also be used in behavioural science and in clinical practice. Although humans recognise facial expressions virtually without effort or delay, reliable expression recognition by machine is still a challenge. We have developed a fast and efficient algorithm for facial expression recognition. The algorithm consists of three main stages: eye region locating stage, the eye detection stage and feature vectors extraction. In the first stage, an effective approach to fast location of the eye region is developed. In the second stage, eye edge contour searching directed by knowledge is introduced in detail. Regional image processing techniques are also described in the second stage. The main purpose of the first stage is to locate the eye region roughly. The algorithm employed in the second stage is restricted to application in just this region. It reduces the complexity of the first stage and improves the reliability in the second stage. Expression representation can be sensitive to translation, scaling, and rotation of the head in an image. To combat the effect of these unwanted transformations, the facial image may be geometrically standardised prior to classification. This normalisation is based on references provided by the eyes. Once eye regions has been detected, in the third stage an invariant coordinate system is generated and extracted feature vectors are used to train a neural network.

%
% Purpose : Find distinct points of the Pupils, Nostrils and Mouth in
% images taken from a video stream to get the Pupils' position in relation
% to the fixed position of Mouth and Nose
%
% A video input adaptor (webcam) has to be connected to the computer in
% order to run this program
%
% Author : Peter Aldrian, Uwe Meier, Andre Pura
% Date : August 12, 2009
% Version : 1.0
% -------------------------------------------------------------------------
% © 2009, Meier, University of Leoben, Leoben, Austria
% email: aldrian.peter[at]gmail.com uwemei[at]gmail.com andre.pura[at]gmail.com
% -------------------------------------------------------------------------

close all;
clear all;

% set length of video stream (if set to 'inf' stop video by closing figure
frames = 100

% starting routine for video input
% Image Acquisition Toolbox has to be installed
vid=videoinput('winvideo',1,getResolution());
triggerconfig(vid,'manual');
set(vid,'ReturnedColorSpace','rgb' );
start(vid);

% start figure; for display purpose only
scrsz = get(0,'ScreenSize');
fig = figure('CloseRequestFcn',{@my_closereq,vid},'Position',scrsz);


for jjj = 1 : frames

% get snapshot from video device
snapshot = getsnapshot(vid);

% delete this two lines after downloading the
% haarcascade_frontalface_alt2.xml -File
disp('Because of license restrictions you have to download the file "haarcascade_frontalface_alt2.xml" on your own.');
disp('Just google it or download it at http://mathworks.de/matlabcentral/fileexchange/19912.');



% main routine to detect distinct points for the eyes, nose and mouth
[T] = getPoints(snapshot);

% displaying snapshot and found points; for display purpose only
if T~=-1

imshow(snapshot,'InitialMagnification','fit');
hold on;

for i=1:2:9
plot(T(i),T(i+1),'ro');
plot(T(i),T(i+1),'gx');
end
else
imshow(snapshot);
end

% pause needed, so matlab can draw figures;for display purpose only
pause(0.05);
hold off;
end

% stops video input
stop(vid);


Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Popular Searches: matlab code for eye detection, eye detection matlab source code, eye detection matlab, eye gaze detection ppt, simple eye detection code matlab, eye detection code in matlab, eye detection matlab code,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Possibly Related Threads...
Thread Author Replies Views Last Post
  an atm with an eye documentation 4 11,519 27-02-2019, 10:43 AM
Last Post:
Music download free atm with an eye documentation and ppts 5 18,631 27-02-2019, 10:14 AM
Last Post:
  free download source code of online college magazine 5 17,574 29-06-2018, 10:09 AM
Last Post: Guest
  how to calculate distance in heed protocol by using matlab 1 1,865 15-06-2018, 03:54 PM
Last Post: Guest
  opengl source code for butterfly 3 3,242 14-05-2018, 08:57 AM
Last Post: Akshatha k
  matlab code for incremental conductance mppt 1 1,410 02-05-2018, 02:28 PM
Last Post: eksi
  anomaly detection code in matlab 3 2,073 23-04-2018, 12:04 AM
Last Post: Guest
  ice cream parlour management system in vb source code 4 5,256 04-04-2018, 11:58 PM
Last Post: vprk77
  matlab code for liver tumor segmentation 2 1,571 01-04-2018, 06:29 PM
Last Post: [email protected]
  matlab code for vehicle tracking using unscented kalman filter 3 16,640 26-03-2018, 08:57 PM
Last Post: fodayj

Forum Jump: