29 cout <<
"Please, select the input video file or camera...\n";
35 cout <<
"Video stream open OK\n";
46 gl_view_main = theScene->getViewport(
"main");
49 win.unlockAccess3DScene();
60 gl_view_aux = theScene->createViewport(
"aux");
62 gl_view_aux->setViewportPosition(10, 10, 300, 200);
63 gl_view_aux->setTransparent(
true);
66 win2.unlockAccess3DScene();
70 win2.setPos(400, 100);
72 cout <<
"Close any window to end.\n";
73 while (
win.isOpen() && win2.isOpen())
75 win.addTextMessage(5, 5,
format(
"%.02fFPS",
win.getRenderingFPS()));
76 win2.addTextMessage(5, 5,
format(
"%.02fFPS", win2.getRenderingFPS()));
77 std::this_thread::sleep_for(1ms);
87 win.get3DSceneAndLock();
88 gl_view_main->setImageView(o->image);
89 win.unlockAccess3DScene();
92 win2.get3DSceneAndLock();
93 gl_view_aux->setImageView(std::move(o->image));
94 win2.unlockAccess3DScene();
112 catch (
const std::exception& e)
119 printf(
"Untyped exception!!");
Declares a class derived from "CObservation" that encapsules an image from a camera, whose relative pose to robot is also stored.
CCameraSensor::Ptr prepareVideoSourceFromUserSelection()
Show to the user a list of possible camera drivers and creates and open the selected camera...
std::string std::string format(std::string_view fmt, ARGS &&... args)
#define ASSERT_(f)
Defines an assertion mechanism.
This base provides a set of functions for maths stuff.
This namespace contains representation of robot actions and observations.
#define IS_CLASS(obj, class_name)
True if the given reference to object (derived from mrpt::rtti::CObject) is of the given class...
mrpt::gui::CDisplayWindow3D::Ptr win
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
The namespace for 3D scene representation and rendering.
std::string exception_to_str(const std::exception &e)
Builds a nice textual representation of a nested exception, which if generated using MRPT macros (THR...
Classes for creating GUI windows for 2D and 3D visualization.
static Ptr Create(Args &&... args)
A graphical user interface (GUI) for efficiently rendering 3D scenes in real-time.