-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmkdocs.yml
71 lines (66 loc) · 2.45 KB
/
mkdocs.yml
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
site_name: Multisensor Pipeline (MSP)
site_url: https://dfki-interactive-machine-learning.github.io/multisensor-pipeline/
repo_url: https://github.com/DFKI-Interactive-Machine-Learning/multisensor-pipeline
theme:
name: 'readthedocs'
features:
- navigation.top
- search.suggest
- navigation.instant
- navigation.sections
- navigation.indexes
nav:
- Overview: 'index.md'
- Installation: 'installation.md'
- Modules:
- Base:
- Base Module: 'Documentation/modules/base/base_module.md'
- Base Source: 'Documentation/modules/base/base_source.md'
- Base Sink: 'Documentation/modules/base/base_sink.md'
- Base Processor: 'Documentation/modules/base/base_processor.md'
- Profiling: 'Documentation/modules/base/profiling.md'
- Audio:
- Microphone: 'Documentation/modules/audio/microphone.md'
- WaveFile: 'Documentation/modules/audio/wave.md'
- Image:
- PillowImage: 'Documentation/modules/image/pillow.md'
- Utils: 'Documentation/modules/image/utils.md'
- Persistance:
- Dataset: 'Documentation/modules/persistence/dataset.md'
- Recording: 'Documentation/modules/persistence/recording.md'
- Replay: 'Documentation/modules/persistence/replay.md'
- Signal:
- filtering: 'Documentation/modules/signal/filtering.md'
- one_euro_filter: 'Documentation/modules/signal/one_euro_filter.md'
- sampling: 'Documentation/modules/signal/sampling.md'
- Video:
- VideoFile: 'Documentation/modules/video/video.md'
- Webcam: 'Documentation/modules/video/webcam.md'
- Multiprocess: 'Documentation/modules/multiprocess.md'
- Network: 'Documentation/modules/network.md'
- Npy: 'Documentation/modules/npy.md'
- Custom Modules:
- Creating Custom Modules: 'custom_modules.md'
- Existing Extensions: 'existing_modules.md'
markdown_extensions:
- toc:
slugify: !!python/name:pymdownx.slugs.uslugify
plugins:
- mkdocstrings:
default_handler: python
handlers:
python:
selection:
filters:
- "^_" # include all members starting with _
rendering:
show_source: true
show_root_heading: true
show_root_full_path: false
watch:
- ./multisensor_pipeline
- search:
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/DFKI-Interactive-Machine-Learning/multisensor-pipeline