-
Notifications
You must be signed in to change notification settings - Fork 26
/
mkdocs.yml
70 lines (64 loc) · 2.32 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
site_name: LandingAI Python Library Documentation
site_url: https://landing-ai.github.io/
repo_url: https://github.com/landing-ai/landingai-python
edit_uri: edit/main/docs/
theme:
name: "material"
custom_dir: docs/_overrides
features:
- content.code.copy
- content.code.annotate
- content.action.edit
plugins:
- mkdocstrings
- search
markdown_extensions:
# Syntax highlight
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
# Multiline note/warning/etc blocks (https://squidfunk.github.io/mkdocs-material/reference/admonitions)
- admonition
- pymdownx.details
nav:
- Quick start: index.md
- Examples: examples.md
- Image Acquisition:
- Image Acquisition: image-acquisition/image-acquisition.md
- Image Files: image-acquisition/image-file.md
- Video Files: image-acquisition/video-file.md
- Webcam: image-acquisition/webcam.md
- Network Camera: image-acquisition/network-cameras.md
- Screenshots: image-acquisition/screenshots.md
- Image Operations: image-operations.md
- Running Inferences:
- Getting Started: inferences/getting-started.md
- Working with Frames: inferences/frames-inference.md
- Overlaying Predictions: inferences/overlaying-predictions.md
- Running Inferences Locally: inferences/docker-deployment.md
- Snowflake Native App: inferences/snowflake-native-app.md
- Extracting Text (OCR) [beta]: inferences/ocr.md
- Data Management: metadata.md
#- Image operations (soon): image-operations.md
- APIs:
- landingai.common: api/common.md
- landingai.data_management: api/data_management.md
- landingai.exceptions: api/exceptions.md
- landingai.image_source_ops: api/image_source_ops.md
- landingai.notebook_utils: api/notebook_utils.md
- landingai.pipeline: api/pipeline.md
- landingai.postprocess: api/postprocess.md
- landingai.predict: api/predict.md
- landingai.st_utils: api/st_utils.md
- landingai.storage: api/storage.md
- landingai.telemetry: api/telemetry.md
- landingai.timer: api/timer.md
- landingai.transform: api/transform.md
- landingai.utils: api/utils.md
- landingai.visualize: api/visualize.md
- Changelog: changelog.md
- Contributing: contributing.md