Home › Forums › Software Development › Replacing "LightlyFiltered" › Reply To: Replacing "LightlyFiltered"
Hi Neeque,
The gaze point data stream comes in two flavours from the EyeX Engine: lightly filtered and unfiltered. You choose between these by providing the corresponding gaze point data mode when you create the data stream instance. If you want unfiltered gaze data, you should create your gaze point data stream with the unfiltered mode.
Here are examples in sample code:
In EyeX SDK for .Net, see the MinimalGazeDataStream, Program.cs. There you would replace “GazePointDataMode.LightlyFiltered” with “GazePointDataMode.Unfiltered” to get the unfiltered stream.
In EyeX SDK for C/C++, see the MinimalGazeDataStream, MinimalGazeDataStream.c. There you would replace “TX_GAZEPOINTDATAMODE_LIGHTLYFILTERED” with “TX_GAZEPOINTDATAMODE_UNFILTERED” to get the unfiltered stream.