ATUAV_RT.GazeDataFixationHandler.GazeDataFixationHandler C# (CSharp) Method

GazeDataFixationHandler() public method

Initializes default fixation detector to Tobii Studio default **TODO** Analyzer = EFDAnalyzer.fdaFixationSize Filter = EFDFilter.fdfAveraging
public GazeDataFixationHandler ( SyncManager syncManager ) : System
syncManager SyncManager
return System
        public GazeDataFixationHandler(SyncManager syncManager)
            : base(syncManager)
        {
            fixationDetector = new FixDetectorClass();
            fixationDetector.init();

            // TODO determine settings of Tobii Studio fixation detector
            fixationDetector.Analyzer = EFDAnalyzer.fdaFixationSize;
            fixationDetector.Filter = EFDFilter.fdfAveraging;
            // fixationDetector.FilterBufferSize =
            // fixationDetector.FilterWeight =
            // fixationDetector.MinFixDuration =
            // fixationDetector.UpdateInterval =
        }