aboutsummaryrefslogtreecommitdiff
path: root/docs/user_guide/gaze_analysis_pipeline/pipeline_modules/gaze_movement_identifiers.md
blob: 6ae66bf74f5d26175892342170b0796a4ec257aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Gaze movement identifiers
=========================

ArGaze provides ready-to-use gaze movement identification algorithms.

Here are JSON samples to include a chosen module inside [ArFrame configuration](../ar_frame_configuration_and_execution.md) *gaze_movement_identifier* entry.

## Dispersion threshold identification (I-DT)

```json
"DispersionThresholdIdentification": {
	"deviation_max_threshold": 50,
	"duration_min_threshold": 200
}
```

[See in code reference](../../../argaze.md/#argaze.GazeAnalysis.DispersionThresholdIdentification.GazeMovementIdentifier)

## Velocity threshold identification (I-VT)

```json
"VelocityThresholdIdentification": {
	"velocity_max_threshold": 10,
	"duration_min_threshold": 200
}
```

[See in code reference](../../../argaze.md/#argaze.GazeAnalysis.VelocityThresholdIdentification.GazeMovementIdentifier)