-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[humble-devel] Add tracker_with_cloud_node #53
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Remove scripts that explicitly destroy node
Alpaca-zip
force-pushed
the
feature/tracker_with_cloud
branch
from
January 22, 2024 04:36
89968e2
to
9f5f54d
Compare
…tralytics_ros into feature/tracker_with_cloud
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
PR Type
Overview
tracker_with_cloud_node
which provides functionality for 3D object detection by integrating 2D detections, mask image, LiDAR data, and camera information.Usage
tracker_node
&tracker_with_cloud_node
tracker_with_cloud_node
Params
camera_info_topic
: Topic name for camera info.lidar_topic
: Topic name for lidar.yolo_result_topic
: Topic name of the custom message containing the 2D bounding box and the mask image.yolo_3d_result_topic
: Topic name for 3D bounding box.cluster_tolerance
: Spatial cluster tolerance as a measure in the L2 Euclidean space.voxel_leaf_size
: Voxel size for pointcloud downsampling.min_cluster_size
: Minimum number of points that a cluster needs to contain.max_cluster_size
: Maximum number of points that a cluster needs to contain.Topics
camera_info_topic
parameter. (sensor_msgs/CameraInfo)lidar_topic
parameter. (sensor_msgs/PointCloud2)yolo_result_topic
parameter. (ultralytics_ros/YoloResult)/detection_cloud
topic. (sensor_msgs/PointCloud2)yolo_3d_result_topic
parameter. (vision_msgs/Detection3DArray)/detection_marker
topic. (visualization_msgs/MarkerArray)Test