IGazeFilter.cs 336 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace TrackerBridge.DSP
{
    interface IGazeFilter
    {
11
        event EventHandler<GazeData> OutputAvailable;
12 13 14 15 16
        GazeData? Output { get; }
        void Input(GazeData input);
        void Reset();
    }
}