-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathmkdocs.yml
57 lines (51 loc) · 1.33 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
site_name: Deep Image Matching
site_url: https://3dom-fbk.github.io/deep-image-matching/
repo_url: https://github.com/3DOM-FBK/deep-image-matching
site_author: 3DOM
theme:
name: readthedocs
# palette:
# primary: indigo
# font:
# text: Open Sans
features:
- navigation.path
- navigation.footer
plugins:
- search
- autorefs
- mkdocstrings:
handlers:
python:
paths: [src] # search packages in the src folder
docstring_style: google
docstring_options: true
options:
docstring_section_style: spacy
show_source: false
heading_level: 2
group_by_category: true
filters: ["!^_", "^__init__$"]
show_root_full_path: false
nav:
- Home: index.md
- Installation: installation.md
- Getting started: getting_started.md
- Examples: examples.md
- Advanced usage:
- advanced_configuration.md
- camera_models.md
- scripts.md
- Use DIM with:
- COLMAP: colmap.md
- OpenMVG: openmvg.md
- MICMAC: micmac.md
- Agisoft Metashape: agisoft_metashape.md
- API Reference:
- Image_matching: image_matching.md
- Configuration: config.md
- Extractors: extractors.md
- Matchers: matchers.md
- IO: io.md
- Utils: utils.md
- About: about.md