Publish MarkerArray in an already existing Marker Topic
Hi guys, I have a node that publishes a MarkerArray Topic:
ros::Publisher obst_pub = nh.advertise<visualization_msgs::MarkerArray>("/obstacles_markers", 1);
which contains my obstacles. Then I have another node that calculates the width of obstacles through the laser scanner and put it in a MarkerArray as well.
Now the problem is that I want to publish this new MarkerArray into the other existing topic "obstacles_markers", is that possible?