You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was playing with merging environments and so on, and wanted to visualize the resulting environment in Rviz. As far as I understand, I need to instantiate a Monitor in my code, and ask the Rviz plugin to connect to it by switching from "URDF" mode to "Monitor".
Unfortunately, the monitor seems to also expose functionality the modifies the environment, but that's a fairly undesirable side-effect for me, as I don't want to accidentally modify the environment via ROS. Thus, I wanted to initialize a monitor using a tesseract_environment::Environment::ConstPtr but this doesn't seem to be possible at the moment.
Is there any way to achieve this currently?
The text was updated successfully, but these errors were encountered:
Unfortunately, the monitor seems to also expose functionality the modifies the environment, but that's a fairly undesirable side-effect for me, as I don't want to accidentally modify the environment via ROS. Thus, I wanted to initialize a monitor using a tesseract_environment::Environment::ConstPtr but this doesn't seem to be possible at the moment.
I assume you would like to not advertise the services for modifying the environment? If so, I am good with modifying the environment monitor to support this, which should not be to much work. I think either adding a flag on construction which disable the start the services or add start and stop function to start and stop these services.
I was playing with merging environments and so on, and wanted to visualize the resulting environment in Rviz. As far as I understand, I need to instantiate a Monitor in my code, and ask the Rviz plugin to connect to it by switching from "URDF" mode to "Monitor".
Unfortunately, the monitor seems to also expose functionality the modifies the environment, but that's a fairly undesirable side-effect for me, as I don't want to accidentally modify the environment via ROS. Thus, I wanted to initialize a monitor using a
tesseract_environment::Environment::ConstPtr
but this doesn't seem to be possible at the moment.Is there any way to achieve this currently?
The text was updated successfully, but these errors were encountered: