yolact_ros
yolact_ros copied to clipboard
Only show some code 'Done.Subscribed to /camera/color/raw_image' without more information
hi,i am new to ROS.After running ur code .why just show the following code'Done.Subscribed to /camera/color/raw_image' without more information?,i am sure i have subscribed to the topic camera/color/image_raw and changed some codeto show the raw image so how to get the message of boundingbox and mask?
As long as the "publish_detections" parameter is set to true (which it is by default), the bounding boxes and masks will be published on the topic "/yolact_ros/detections". If you want to check whether this is working, you can use rostopic tools, e.g. "rostopic echo /yolact_ros/detections". To use them in another ROS node, you can subscribe to the topic (Python Tutorial / C++ Tutorial).
hi,i am new to ROS.After running ur code .why just show the following code'Done.Subscribed to /camera/color/raw_image' without more information?,i am sure i have subscribed to the topic camera/color/image_raw and changed some codeto show the raw image so how to get the message of boundingbox and mask?
i got stuck with the same problem,how can i get the masks?
As mentioned in my previous reply, you have to subscribe to /yolact_ros/detections
. If you renamed the node, the namespace changes. Do you get output for rostopic echo /yolact_ros/detections
? If not, try rostopic list
to check which topics are available.
As mentioned in my previous reply, you have to subscribe to
/yolact_ros/detections
. If you renamed the node, the namespace changes. Do you get output forrostopic echo /yolact_ros/detections
? If not, tryrostopic list
to check which topics are available.
thanks for your help! i found my mistake