blob: e0ee939a798a005a34e1fafbe31a052fa300f94d (
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
site_name: ArGaze documentation
nav:
- index.md
- installation.md
- license.md
- User Guide:
- ArUco Markers:
- user_guide/aruco_markers/introduction.md
- user_guide/aruco_markers/dictionary_selection.md
- user_guide/aruco_markers/markers_creation.md
- user_guide/aruco_markers/camera_calibration.md
- user_guide/aruco_markers/markers_detection.md
- user_guide/aruco_markers/markers_pose_estimation.md
- user_guide/aruco_markers/markers_scene_description.md
- Areas Of Interest:
- user_guide/areas_of_interest/introduction.md
- user_guide/areas_of_interest/aoi_scene_description.md
- user_guide/areas_of_interest/aoi_scene_projection.md
- user_guide/areas_of_interest/vision_cone_filtering.md
- user_guide/areas_of_interest/aoi_matching.md
- user_guide/areas_of_interest/aoi_frame.md
- Augmented Reality environment:
- user_guide/ar_environment/introduction.md
- user_guide/ar_environment/environment_setup.md
- user_guide/ar_environment/environment_exploitation.md
- Gaze Analysis:
- user_guide/gaze_analysis/introduction.md
- user_guide/gaze_analysis/gaze_position.md
- user_guide/gaze_analysis/gaze_movement.md
- user_guide/gaze_analysis/scan_path.md
- Timestamped data:
- user_guide/timestamped_data/introduction.md
- user_guide/timestamped_data/ordered_dictionary.md
- user_guide/timestamped_data/saving_and_loading.md
- user_guide/timestamped_data/data_synchronisation.md
- user_guide/timestamped_data/pandas_dataframe_conversion.md
- Use Cases:
- use_cases/simone_a320_cockpit_simulator.md
- Code Reference:
- argaze.md
- Contributor Guide:
- contributor_guide/build_documentation.md
- contributor_guide/unitary_test.md
theme:
name: readthedocs
logo: img/logo-argaze.png
favicon: img/favicon.ico
palette:
primary: #0299D2
extra_css:
- css/extra.css
plugins:
- search
- autorefs
- include-markdown
- mkdocs-video
- mkdocstrings:
handlers:
# See: https://mkdocstrings.github.io/python/usage/
python:
options:
docstring_style: google
allow_inspection: false
show_source: false
members_order: 'alphabetical'
heading_level: 2
annotations_path: brief
show_submodules: true
show_root_toc_entry: false
watch:
- src/argaze
markdown_extensions:
- markdown_include.include:
base_path: .
- attr_list
- admonition
|