-
Notifications
You must be signed in to change notification settings - Fork 466
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
MarkerDisplay limits you to 100 Markers #1135
Comments
If you're sending many markers at once (only time the queue size is important) then you should probably use a MarkerArray. Also when you want to scale up things past hundreds you should try to use a "list" style marker rather than lots of individual markers if you are able, see: http://wiki.ros.org/rviz/DisplayTypes/Marker#Rendering_Complexity_Notes Either way, the property should work as you've described (it doesn't make sense that hard coding a new value works but changing the property does not). |
Thank you for the tips. Trying MarkerArray was on my todo list as a possible solution, but I'm not familiar with "list" style markers yet. I'll investigate those too. |
…os-visualization#1135) Signed-off-by: Alejandro Hernández Cordero <ahcorde@gmail.com> (cherry picked from commit b30838530c1aee8f6ddcbd11db258fbd24e57935) Co-authored-by: Alejandro Hernández Cordero <alejandro@openrobotics.org>
As far as I can tell, you should be able to have more than 100 Markers in your scene by doing Add->Marker in RViz and increasing the Queue Size above 100. However, this appears to have no effect. I can only see 100 Markers in RViz. What does work is to hardcode a new default size for queue_size_property_ in the MarkerDisplay constructor.
The text was updated successfully, but these errors were encountered: