-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
[Refactor] update Det3DLocalVisualization
and visualization documentation
#1857
Conversation
python tools/misc/browse_dataset.py configs/_base_/datasets/kitti-3d-3class.py --task det --aug --output-dir ${OUTPUT_DIR} --online | ||
``` | ||
|
||
If you also want to show 2D images with 3D bounding boxes projected onto them, you need to find a config that supports multi-modality data loading, and then change the `--task` args to `multi_modality-det`. An example is showed below |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's weird that If you also want to show 2D images with 3D bounding boxes projected onto them, you need to find a config that supports multi-modality data loading
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, it's quite normal, we need a config where input_modality = dict(use_lidar=True, use_camera=True)
, typically the 3d point cloud algorithm config has input_modality = dict(use_lidar=True, use_camera=False)
Det3DLocalVisualization
and visualization documentation
Det3DLocalVisualization
and visualization documentationDet3DLocalVisualization
and visualization documentation
…into update_vis_doc
…into update_vis_doc
Thanks for your contribution and we appreciate it a lot. The following instructions would make your pull request more healthy and more easily get feedback. If you do not understand some items, don't worry, just make the pull request and seek help from maintainers.
Motivation
visualizer
in dataset config for visualizationdraw_points_on_image
function to visualize the projected points on imageModification
Please briefly describe what modification is made in this PR.
BC-breaking (Optional)
Does the modification introduce changes that break the back-compatibility of the downstream repos?
If so, please describe how it breaks the compatibility and how the downstream projects should modify their code to keep compatibility with this PR.
Use cases (Optional)
If this PR introduces a new feature, it is better to list some use cases here, and update the documentation.
Checklist