blob: c8fa63c9d543df6021a5362a36e75041e3066a31 (
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
|
AOI matchers
============
ArGaze provides ready-to-use AOI matching algorithms.
Here are JSON samples to include the chosen module inside [ArLayer configuration](../ar_layer_configuration_and_execution.md) *aoi_matcher* entry.
## Deviation circle coverage
```json
"DeviationCircleCoverage": {
"coverage_threshold": 0.5
}
```
[See in code reference](../../../argaze.md/#argaze.GazeAnalysis.DeviationCircleCoverage.AOIMatcher)
## Focus point inside
```json
"FocusPointInside": {}
```
[See in code reference](../../../argaze.md/#argaze.GazeAnalysis.FocusPointInside.AOIMatcher)
|