Metadata-Version: 1.1
Name: PyFixation
Version: 0.2.1
Summary: A library for classifying raw eye gaze data into discrete events like saccades and fixations.
Home-page: https://github.com/RyanHope/PyFixation
Author: Ryan Hope
Author-email: rmh3093@gmail.com
License: GPL-3
Description: ==========
        PyFixation
        ==========
        
        ``pyfixation`` is a Python package for classifying raw eye gaze data into discrete events like saccades and fixations.
        This package can be used online in real-time or offline after data has been collected.
        
        Here's a basic example of usage::
        
        	from pyfixation import FixationProcessor
        
        	px_per_mm = 3.55
        
        	fp = FixationProcessor( px_per_mm, sample_rate = 500 )
        
        	f = open( 'gazedata.txt', 'r' )
        	for line in f.readlines():
        		gaze_found, gaze_x, gaze_y = map( float, line.split( '\t' ) )
        		print fp.detect_fixation( gaze_found, gaze_x, gaze_y )
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Programming Language :: Python :: 2
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Utilities
