forked from norlab-ulaval/libpointmatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
44 lines (44 loc) · 1.92 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
site_name: libpointmatcher
repo_url: https://github.com/ethz-asl/libpointmatcher
edit_uri: edit/master/doc
site_description: An "Iterative Closest Point" library for 2-D/3-D mapping in robotic
google_analytics: ['UA-70950258-1', 'libpointmatcher.readthedocs.org']
docs_dir: 'doc'
theme:
name: mkdocs
hljs_style: atom-one-light
hljs_languages:
- bash
- cmake
- cpp
- yaml
nav:
- Home: 'index.md'
- Compilation:
- 'Ubuntu': 'CompilationUbuntu.md'
- 'Mac OS X': 'CompilationMac.md'
- 'Windows': 'CompilationWindows.md'
- Beginner:
- 'What is libpointmatcher about?': 'Introduction.md'
- 'What can I do with libpointmatcher': 'ApplicationsAndPub.md'
- 'What the different data filters do?': 'DataFilters.md'
- 'Example: applying a chain of data filters': 'ApplyingDataFilters.md'
- 'What are the different outlier filters?' : 'OutlierFiltersFamilies.md'
- 'Example: An introduction to ICP': 'ICPIntro.md'
- 'The ICP chain configuration and its variants': 'DefaultICPConfig.md'
- 'Configuring libpointmatcher using YAML': 'Configuration.md'
- 'Supported file types and importing/exporting point clouds': 'ImportExport.md'
- Advanced:
- 'How to link a project to libpointmatcher': 'LinkingProjects.md'
- 'How to use libpointmatcher in ROS?': 'UsingInRos.md'
- 'How are point clouds represented?': 'PointClouds.md'
- 'Example: Writing a program which performs ICP': 'BasicRegistration.md'
- 'How to move a point cloud using a rigid transformation?': 'Transformations.md'
- 'Example: Configure an ICP solution without yaml': 'ICPWithoutYaml.md'
- Developer:
- 'Creating a DataPointsFilter': 'DataPointsFilterDev.md'
- 'Creating a Transformation': 'TransformationDev.md'
- 'Creating unit tests': 'UnitTestDev.md'
- Python:
- 'Compiling libpointmatcher with Python': 'CompilationPython.md'
- 'Using libpointmatcher with Python': 'PythonModule.md'