aboutsummaryrefslogtreecommitdiff
path: root/docs/user_guide/gaze_analysis_pipeline/pipeline_modules/aoi_scan_path_analyzers.md
blob: ad1832d918c781a3b29eb944a00122c9dcb8cb13 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
AOI scan path analyzers
=======================

ArGaze provides ready-to-use AOI scan path analysis algorithms.

Here are JSON samples to include a chosen module inside [ArLayer configuration](../aoi_analysis.md) *aoi_scan_path_analyzers* entry.

## Basic metrics

```json
"Basic": {}
```

[See in code reference](../../../argaze.md/#argaze.GazeAnalysis.Basic.AOIScanPathAnalyzer)

## Entropy

```json
"Entropy": {}
```

[See in code reference](../../../argaze.md/#argaze.GazeAnalysis.Entropy.AOIScanPathAnalyzer)

## K-modified coefficient

```json
"KCoefficient": {}
```

[See in code reference](../../../argaze.md/#argaze.GazeAnalysis.KCoefficient.AOIScanPathAnalyzer)

## Lempel-Ziv complexity

```json
"LempelZivComplexity": {}
```

[See in code reference](../../../argaze.md/#argaze.GazeAnalysis.LempelZivComplexity.AOIScanPathAnalyzer)

## N-Gram

```json
"NGram": {
	"n_min": 3,
	"n_max": 5
}
```

[See in code reference](../../../argaze.md/#argaze.GazeAnalysis.NGram.AOIScanPathAnalyzer)

## Transition matrix

```json
"TransitionMatrix": {}
```

[See in code reference](../../../argaze.md/#argaze.GazeAnalysis.TransitionMatrix.AOIScanPathAnalyzer)