-
Notifications
You must be signed in to change notification settings - Fork 31
/
mkdocs.yml
140 lines (128 loc) · 4.68 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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
site_name: PlantSeg
site_url: https://kreshuklab.github.io/plant-seg/
site_description: Cell instance aware segmentation in densely packed 3D volumetric images
repo_name: kreshuklab/plant-seg
repo_url: https://github.com/kreshuklab/plant-seg
edit_uri: edit/main/docs/
copyright: Copyright © 2019 - 2025 Lorenzo Cerrone, Adrian Wolny, Qin Yu
theme:
name: material
favicon: images/favicon.ico
logo: logos/logo_white.png
icon:
repo: fontawesome/brands/github
palette:
# Palette toggle for light mode
- scheme: default
primary: green
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
# primary: teal
accent: light-green
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- content.tooltips
- content.code.annotate
- navigation.instant
- navigation.instant.progress
- navigation.sections
- navigation.path
- navigation.indexes
- navigation.footer
- toc.follow
- search.suggest
- search.share
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/kreshuklab/plant-seg
name: PlantSeg on GitHub
markdown_extensions:
- abbr
- attr_list
- md_in_html
- admonition
- pymdownx.extra
- pymdownx.details
- pymdownx.snippets
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.snippets:
base_path: docs/snippets
check_paths: true
plugins:
- search
- autorefs
- markdown-exec
- mkdocstrings:
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
- https://numpy.org/doc/stable/objects.inv
options:
heading_level: 3
docstring_style: google
show_source: true
show_signature_annotations: true
show_root_heading: true
show_root_full_path: true
show_bases: true
docstring_section_style: list
- git-revision-date-localized:
enable_creation_date: true
- git-committers:
repository: kreshuklab/plant-seg
branch: master
nav:
- Overview:
- index.md
- Getting Started:
- chapters/getting_started/index.md
- Installation: chapters/getting_started/installation.md
- Contributing: chapters/getting_started/contributing.md
- Troubleshooting: chapters/getting_started/troubleshooting.md
- Napari GUI:
- chapters/plantseg_interactive_napari/index.md
- Import/Export: chapters/plantseg_interactive_napari/import_export.md
- Pre-Processing: chapters/plantseg_interactive_napari/preprocessing.md
- Main Workflow: chapters/plantseg_interactive_napari/unet_gasp_workflow.md
- Post-processing: chapters/plantseg_interactive_napari/proofreading_auto.md
- Proofreading: chapters/plantseg_interactive_napari/proofreading_manual.md
- Extra Workflows: chapters/plantseg_interactive_napari/extra.md
- Training: chapters/plantseg_interactive_napari/unet_training.md
- Dataset and Training:
- chapters/plantseg_models/index.md
- Custom Datasets: chapters/plantseg_models/custom_datasets.md
- Training: chapters/plantseg_models/training.md
- API:
- chapters/python_api/index.md
- tasks:
- plantseg.tasks.io_tasks: chapters/python_api/tasks/io_tasks.md
- plantseg.tasks.dataprocessing_tasks: chapters/python_api/tasks/dataprocessing_tasks.md
- plantseg.tasks.segmentation_tasks: chapters/python_api/tasks/segmentation_tasks.md
- plantseg.tasks.prediction_tasks: chapters/python_api/tasks/prediction_tasks.md
- functionals:
- plantseg.io: chapters/python_api/functionals/io.md
- plantseg.functionals.dataprocessing: chapters/python_api/functionals/data_processing.md
- plantseg.functionals.prediction: chapters/python_api/functionals/cnn_prediction.md
- plantseg.functionals.segmentation: chapters/python_api/functionals/segmentation.md
- PlantSeg v1:
- chapters/plantseg_legacy/installation.md
- Classic GUI:
- chapters/plantseg_legacy/plantseg_classic_gui/index.md
- Data Processing: chapters/plantseg_legacy/plantseg_classic_gui/data_processing.md
- Prediction: chapters/plantseg_legacy/plantseg_classic_gui/cnn_prediction.md
- Segmentation: chapters/plantseg_legacy/plantseg_classic_gui/segmentation.md
- Classic CLI:
- chapters/plantseg_legacy/plantseg_classic_cli/index.md