You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After multiple attempts to modify yolov8n-seg.pt and voxel_leaf_size, the 3D bounding boxes still do not display. I am using kitti-track_with_cloud.launch, and both the images and point clouds display normally. The images have detection results, but the point clouds do not have any results.
Additional
No response
The text was updated successfully, but these errors were encountered:
This is a bug.
You should modify the /home/mm/projects/ultralytics_ros/src/ultralytics_ros/src/tracker_with_cloud_node.cpp.
move the line 'cam_model_.fromCameraInfo(camera_info_msg); ' to some line before the following
pcl::PointCloudpcl::PointXYZ::Ptr transformed_cloud;
transformed_cloud = cloud2TransformedCloud(downsampled_cloud, cloud_msg->header.frame_id, cam_model_.tfFrame(),
cloud_msg->header.stamp);
'cam_model_' should be set first.
This is a bug. You should modify the /home/mm/projects/ultralytics_ros/src/ultralytics_ros/src/tracker_with_cloud_node.cpp. move the line 'cam_model_.fromCameraInfo(camera_info_msg); ' to some line before the following pcl::PointCloudpcl::PointXYZ::Ptr transformed_cloud; transformed_cloud = cloud2TransformedCloud(downsampled_cloud, cloud_msg->header.frame_id, cam_model_.tfFrame(), cloud_msg->header.stamp); 'cam_model_' should be set first.
"Thank you for your help. I have successfully solved this issue, but now I am encountering a new problem. If you have experience in this area, I would greatly appreciate your guidance."question:"Has anyone ever done camera-radar fusion using their own equipment? After calibrating the Azure Kinect DK with the RSLidar, I often find that the bounding boxes in the point cloud appear behind the correct point cloud, and the successfully clustered red point cloud does not show up. What parts can be optimized in this situation?"
Branch
noetic-devel
Question
After multiple attempts to modify yolov8n-seg.pt and voxel_leaf_size, the 3D bounding boxes still do not display. I am using kitti-track_with_cloud.launch, and both the images and point clouds display normally. The images have detection results, but the point clouds do not have any results.
Additional
No response
The text was updated successfully, but these errors were encountered: