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
Turns out there were some issues on my side and also an issue in the snap package (that was fixed in version 0.14). Here are some sparse instructions for getting it working
Rebuild tesseract_visualization to so that the ignition plugin is compiled. You should see this message "Ignition Visualization Library will be built!"
Launch visualization with tesseract-ignition.tesseract-visualization
Use visualization loader to load the plugin and plot away see example here.
// Dynamically load ignition visualizer if exist
tesseract_visualization::VisualizationLoader loader;
auto plotter = loader.get();
if (plotter != nullptr && tesseract != nullptr)
{
plotter->init(tesseract);
plotter->waitForConnection(3);
plotter->plotEnvironment();
}
Is there an example of how to use this with the snap package? Specifically, I want to plot an environment using tesseract_ignition.
The text was updated successfully, but these errors were encountered: