blob: 969dd0ba45b5185213076359d3c13549a0839f7a (
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
30
31
32
33
34
35
36
37
38
39
40
|
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
}
```
|