ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
AFAIK there isn't a way to achieve what you want. The only way I can think of is to create a custom rqt plugin on your own. This custom plugin, however, can be relatively low-cost.
Instead of explaining it in the answer thread, I just added a tutorial section for how to re-use exising (r)qt components.
In your particular scenario, I would do the following, in addition to general steps in the tutorial above:
customwidget
as many as you need using the right class from rqt_image_view
. Differentiate each instance by name
attribute (as instructed in the tutorial).Hope the this makes sense, along with the tutorial just added.
2 | No.2 Revision |
AFAIK there isn't a way to achieve what you want. The only way I can think of is to create want other than creating a custom rqt plugin on your own. This custom plugin, however, can be relatively low-cost.
Instead of explaining it in the answer thread, I just added a tutorial section for how to re-use exising (r)qt components.
In your particular scenario, I would do the following, in addition to general steps in the tutorial above:
customwidget
as many as you need using the right class from rqt_image_view
. Differentiate each instance by name
attribute (as instructed in the tutorial).Hope the this makes sense, along with the tutorial just added.
3 | No.3 Revision |
AFAIK there isn't a way to achieve what you want other than creating a custom rqt plugin on your own. This custom plugin, however, can be relatively low-cost.
Instead of explaining it in the answer thread, I just added a tutorial section for how to re-use exising (r)qt components.
In your particular scenario, I would do the following, in addition to general steps in the tutorial above:
customwidget
as many as you need using the right class from rqt_image_view
. Differentiate each instance by name
attribute (as instructed in the tutorial).Hope the this makes sense, along with the tutorial just added.
Update) @wolf opened another thread http://answers.ros.org/question/201064/custom-rqt-gui/ where a simpler workaround is referenced.