Gaze movement identifiers ========================= ArGaze provides ready-to-use gaze movement identification algorithms. The JSON samples have to be included inside [ArFrame configuration](../configuration_and_execution.md) *gaze_movement_identifier* entry to select an algorithm. ```json "gaze_movement_identifier": { JSON sample } ``` Read more about [GazeMovementIdentifier base class in code reference](../../../argaze.md/#argaze.GazeFeatures.GazeMovementIdentifier). ## Dispersion threshold identification (I-DT) ::: argaze.GazeAnalysis.DispersionThresholdIdentification.GazeMovementIdentifier ### JSON sample ```json "argaze.GazeAnalysis.DispersionThresholdIdentification.GazeMovementIdentifier": { "deviation_max_threshold": 25, "duration_min_threshold": 150 } ``` ## Velocity threshold identification (I-VT) ::: argaze.GazeAnalysis.VelocityThresholdIdentification.GazeMovementIdentifier ### JSON sample ```json "argaze.GazeAnalysis.VelocityThresholdIdentification.GazeMovementIdentifier": { "velocity_max_threshold": 10, "duration_min_threshold": 200 } ```