Java: Recording Visualization Markers and Rviz [closed]
Hi there, Markers represent finger joints captured on the kinect*.
Currently I am able to draw markers onto Rviz, I can also decide whether to "record" the markers drawn (Storing the markers into an ArrayList of Markers). I have a "play" button which re-draws the markers that were stored onto the ArrayList.
However, the issue is that if I do:
mark = PB_MARKER.newMessage(); //publisher - new message
for (Marker m : storageMarker){ //store markers within
mark = m;
PB_MARKER.publish(mark);
}
If I publish the markers like this, there is no time frame or duration for which the markers should be played. Is there any way of playing each marker as required based on time frames?
Thank you, really appreciate it