-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
66 lines (62 loc) · 2.13 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
site_name: Categorical Pose and Shape Evaluation
site_url: https://roym899.github.io/pose_and_shape_evaluation/
repo_url: https://github.com/roym899/pose_and_shape_evaluation
repo_name: roym899/pose_and_shape_evaluation
theme:
name: material
icon:
repo: fontawesome/brands/github
extra_css:
- css/mkdocstrings.css
markdown_extensions:
- toc:
permalink: True
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
plugins:
- search
- autorefs
- mkdocstrings:
watch:
- cpas_toolbox
handlers:
python:
options:
show_root_heading: true
show_signature_annotations: true
show_source: true
separate_signature: True
docstring_section_style: "spacy"
line_length: 75
members_order: source
docstring_style: "google"
enable_inventory: true
nav:
- Getting started: index.md
- Data preparation: data_preparation.md
- "Tutorial: Evaluate new method": tutorial_evaluation.md
- API Reference:
- evaluate.py: api_reference/evaluate.md
- datasets:
- nocs_dataset.py: api_reference/datasets/nocs_dataset.md
- nocs_utils.py: api_reference/datasets/nocs_utils.md
- redwood_dataset.py: api_reference/datasets/redwood_dataset.md
- cpas_methods:
- cass.py: api_reference/cpas_methods/cass.md
- spd.py: api_reference/cpas_methods/spd.md
- crnet.py: api_reference/cpas_methods/crnet.md
- asmnet.py: api_reference/cpas_methods/asmnet.md
- sgpa.py: api_reference/cpas_methods/sgpa.md
- icaps.py: api_reference/cpas_methods/icaps.md
- sdfest.py: api_reference/cpas_methods/sdfest.md
- dpdn.py: api_reference/cpas_methods/dpdn.md
- rbppose.py: api_reference/cpas_methods/rbppose.md
- metrics.py: api_reference/metrics.md
- cpas_method.py: api_reference/cpas_method.md
- camera_utils.py: api_reference/camera_utils.md
- pointset_utils.py: api_reference/pointset_utils.md
- quaternion_utils.py: api_reference/quaternion_utils.md
- utils.py: api_reference/utils.md