Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions docs/tutorials/render.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,6 @@ If you want to visualize annotation results, `Tier4` supports some rendering met

![Render PointCloud GIF](../assets/render_pointcloud.gif)

<!-- prettier-ignore-start -->
!!! NOTE
In case of you want to ignore camera distortion, please specify `ignore_distortion=True`.

<!-- markdownlint-disable MD046 -->
```python
>>> t4.render_pointcloud(ignore_distortion=True)
```
<!-- prettier-ignore-end -->

### Save Recording

You can save the rendering result as follows:
Expand Down
11 changes: 1 addition & 10 deletions t4_devkit/cli/visualize.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,15 +95,6 @@ def pointcloud(
..., "-rv", "--revision", help="Specify if you want to load the specific version."
),
] = None,
ignore_distortion: Annotated[
bool,
typer.Option(
...,
"-ig",
"--ignore-distortion",
help="Indicates whether to ignore camera distortion",
),
] = True,
output: Annotated[
str | None,
typer.Option(
Expand All @@ -117,7 +108,7 @@ def pointcloud(
_create_dir(output)

t4 = Tier4(data_root, revision=revision, verbose=False)
t4.render_pointcloud(ignore_distortion=ignore_distortion, save_dir=output)
t4.render_pointcloud(save_dir=output)


def _create_dir(dir_path: str | None) -> None:
Expand Down
Loading
Loading