-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
105 lines (101 loc) · 3.8 KB
/
mkdocs.yml
File metadata and controls
105 lines (101 loc) · 3.8 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
site_name: MindSight
site_description: Eye-Gaze Intersection Tracker for Behavioral Neuroscience Research
theme:
name: material
palette:
- scheme: default
primary: indigo
accent: cyan
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: indigo
accent: cyan
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.indexes
- search.suggest
- search.highlight
- content.code.copy
- content.tabs.link
plugins:
- search
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_mermaid
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- attr_list
- md_in_html
- toc:
permalink: true
nav:
- Home: index.md
- Getting Started:
- getting-started/index.md
- Installation: getting-started/installation.md
- Quickstart (CLI): getting-started/quickstart-cli.md
- Quickstart (GUI): getting-started/quickstart-gui.md
- Your First Project: getting-started/first-project.md
- User Guide:
- user-guide/index.md
- Pipeline Overview: user-guide/pipeline-overview.md
- Object Detection: user-guide/object-detection.md
- Gaze Estimation: user-guide/gaze-estimation.md
- Visual Prompts: user-guide/visual-prompts.md
- Phenomena Tracking: user-guide/phenomena-overview.md
- Data & Output: user-guide/data-output.md
- Auxiliary Streams: user-guide/auxiliary-streams.md
- Project Mode: user-guide/project-mode.md
- GUI Guide: user-guide/gui-guide.md
- Phenomena:
- phenomena/index.md
- Joint Attention: phenomena/joint-attention.md
- Mutual Gaze: phenomena/mutual-gaze.md
- Social Referencing: phenomena/social-referencing.md
- Gaze Following: phenomena/gaze-following.md
- Gaze Aversion: phenomena/gaze-aversion.md
- Scanpath Analysis: phenomena/scanpath.md
- Gaze Leadership: phenomena/gaze-leadership.md
- Attention Span: phenomena/attention-span.md
- Developer Guide:
- developer/index.md
- Architecture Deep Dive: developer/architecture.md
- FrameContext Reference: developer/frame-context.md
- Object Detection Module: developer/object-detection-module.md
- Gaze Processing Module: developer/gaze-processing-module.md
- Phenomena Engine: developer/phenomena-engine.md
- Data Collection Module: developer/data-collection-module.md
- Plugin System: developer/plugin-system.md
- Writing a Plugin: developer/writing-a-plugin.md
- Plugin Tutorials: developer/plugin-tutorial.md
- "Phenomena Plugin Tutorial: Novel Salience": developer/phenomena-plugin-tutorial.md
- "Gaze Plugin Tutorial: Gazelle": developer/gaze-plugin-tutorial.md
- "Object Detection Plugin Tutorial": developer/object-detection-plugin-tutorial.md
- "Data Collection Plugin Tutorial": developer/data-collection-plugin-tutorial.md
- Pipeline Configuration (YAML): developer/pipeline-yaml.md
- Testing: developer/testing.md
- Reference:
- reference/index.md
- CLI Flags: reference/cli-flags.md
- pipeline.yaml Schema: reference/pipeline-yaml-schema.md
- FrameContext Keys: reference/frame-context-keys.md
- Configuration Dataclasses: reference/config-dataclasses.md
- Detection Dataclass: reference/detection-dataclass.md
- Plugin Base Classes: reference/plugin-base-classes.md
- Keyboard Shortcuts: reference/keyboard-shortcuts.md
- Changelog: changelog.md