Skip to content

Commit 3d79b1a

Browse files
committed
docs: update document for rendering map
Signed-off-by: ktro2828 <kotaro.uetake@tier4.jp>
1 parent aa5722c commit 3d79b1a

4 files changed

Lines changed: 17 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,5 @@ source .venv/bin/activate
6262
| | Image Segmentation ||
6363
| | Raw Image ||
6464
| | Raw PointCloud on Image ||
65-
| Map | Vector Map | |
65+
| Map | Vector Map | |
6666
| | Ego Position on Street View ||

docs/assets/render_map.png

1.09 MB
Loading

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
| 3D | 3D Boxes ||
1616
| | PointCloud Segmentation | |
1717
| | Raw PointCloud ||
18-
| | 3D Trajectories | |
18+
| | 3D Trajectories | |
1919
| | TF Links ||
2020
| 2D | 2D Boxes ||
2121
| | Image Segmentation ||
2222
| | Raw Image ||
2323
| | Raw PointCloud on Image ||
24-
| Map | Vector Map | |
24+
| Map | Vector Map | |
2525
| | Ego Position on Street View ||

docs/tutorials/render.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ When you specify `save_dir`, viewer will not be spawned on your screen.
6060

6161
## Rendering with `RerunViewer`
6262

63-
If you want to visualize your components, such as boxes that your ML-model estimated, `RerunViewer` allows you to visualize these components.
63+
### Rendering boxes
64+
65+
If you want to visualize your components, such as boxes that your ML-model estimated, `RerunViewer` allows you to visualize these components.
6466
For details, please refer to the API references.
6567

6668
```python
@@ -81,3 +83,14 @@ It allows you to render boxes by specifying elements of boxes directly.
8183
# Rendering 2D boxes
8284
>>> viewer.render_box2ds(seconds, rois, class_ids)
8385
```
86+
87+
### Rendering lanelet map
88+
89+
![Render Lanelet Map](../assets/render_map.png)
90+
91+
You can also render lanelet map by specifying `lanelet_path`:
92+
93+
```python
94+
# Rendering lanelet map
95+
>>> viewer.render_map(lanelet_path)
96+
```

0 commit comments

Comments
 (0)