eye tracking source code matlab
#1

I need eye tracking based read python or c++ source code in Matlab GUI or complete source code.
Reply
#2

eye tracking source code matlab

Abstract

Abstract
Source Code Summarization is an emerging technology for automatically generating brief descriptions of code. Current summarization techniques work by selecting a subset of the statements and keywords from the code, and then including information from those statements and keywords in the summary. The quality of the summary depends heavily on the process of selecting the subset: a high-quality selection would contain the same statements and keywords that a programmer would choose. Unfortunately, little evidence exists about the statements and keywords that programmers view as important when they summarize source code. In this paper, we present an eye-tracking study of 10 professional Java programmers in which the programmers read Java methods and wrote English summaries of those methods. We apply the findings to build a novel summarization tool. Then, we evaluate this tool. Finally, we further analyze the programmers’ method summaries to explore specific keyword usage and provide evidence to support the development of source code summarization systems.

%
% 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: eye tracking source code matlab, eye tracking matlab code cnn, eye tracking matlab, eye tracking matlab code, deborah meier in schools, source code for how to detect eye drowsiness in matlab,

[-]
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
  simple java rmi chat application source code 2 19,206 20-07-2018, 12:08 PM
Last Post: Guest
  authentication schemes for session passwords using color and images project source code 2 2,237 03-02-2018, 09:35 AM
Last Post: Nischithnash
  free download source code for online movie ticket booking in java 2 18,717 15-08-2017, 03:21 PM
Last Post: Morshed
  source code for rsa encryption and decryption in java 2 8,019 29-05-2017, 04:21 PM
Last Post: Meghna Jadhav
  image encryption and decryption using rsa algorithm in matlab 2 7,911 29-05-2017, 04:17 PM
Last Post: Priyanka Bidikar
  download liver tumor ct scan image in matlab with source code 4 8,068 21-05-2017, 09:54 PM
Last Post: abdulrahmanmashaal
  mobile tracking in android ppt 2 1,018 17-05-2017, 08:51 PM
Last Post: SANYAH
  online cab booking source code in asp net 3 7,944 11-05-2017, 10:39 AM
Last Post: jaseela123d
Thumbs Up online catering management system on php with report and source code and ppt 4 8,804 29-04-2017, 10:59 AM
Last Post: jaseela123d
  MATLAB codes needed for powerline communication 1 8,079 12-04-2017, 05:00 PM
Last Post: jaseela123d

Forum Jump: