MRPT  2.0.1
test.cpp
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | https://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2020, Individual contributors, see AUTHORS file |
6  | See: https://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See: https://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 
10 #include <mrpt/gui.h>
12 #include <mrpt/opengl.h>
13 #include <iostream>
14 
15 using namespace std;
16 using namespace mrpt;
17 using namespace mrpt::gui;
18 using namespace mrpt::opengl;
19 using namespace mrpt::math;
20 using namespace mrpt::obs;
21 
22 // ------------------------------------------------------
23 // TestOpenGLVideo
24 // ------------------------------------------------------
25 void TestOpenGLVideo()
26 {
27  // Show to the user a list of possible camera drivers and creates and open
28  // the selected camera.
29  cout << "Please, select the input video file or camera...\n";
30 
33  if (!cam) return;
34 
35  cout << "Video stream open OK\n";
36 
37  // Create 3D window:
38  CDisplayWindow3D win("#1: Demo of image mode viewport", 320, 240);
39  CDisplayWindow3D win2("#2: Demo of image mode viewport", 500, 400);
40 
41  // Win #1:
42  // Get the smart pointer to the main viewport object in this window:
43  COpenGLViewport::Ptr gl_view_main;
44  {
45  COpenGLScene::Ptr& theScene = win.get3DSceneAndLock();
46  gl_view_main = theScene->getViewport("main");
47  ASSERT_(gl_view_main);
48  // IMPORTANT!!! IF NOT UNLOCKED, THE WINDOW WILL NOT BE UPDATED!
49  win.unlockAccess3DScene();
50  }
51 
52  // Win #2:
53  // Get the smart pointer to the main viewport object in this window:
54  COpenGLViewport::Ptr gl_view_aux;
55  {
56  COpenGLScene::Ptr& theScene = win2.get3DSceneAndLock();
57  theScene->insert(mrpt::opengl::CGridPlaneXY::Create());
58 
59  // Create small auxiliary viewport
60  gl_view_aux = theScene->createViewport("aux");
61 
62  gl_view_aux->setViewportPosition(10, 10, 300, 200);
63  gl_view_aux->setTransparent(true);
64 
65  // IMPORTANT!!! IF NOT UNLOCKED, THE WINDOW WILL NOT BE UPDATED!
66  win2.unlockAccess3DScene();
67  }
68 
69  win.setPos(10, 10);
70  win2.setPos(400, 100);
71 
72  cout << "Close any window to end.\n";
73  while (win.isOpen() && win2.isOpen())
74  {
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);
78 
79  // Grab new video frame:
80  CObservation::Ptr obs = cam->getNextFrame();
81  if (obs)
82  {
83  if (IS_CLASS(*obs, CObservationImage))
84  {
86  std::dynamic_pointer_cast<CObservationImage>(obs);
87  win.get3DSceneAndLock();
88  gl_view_main->setImageView(o->image);
89  win.unlockAccess3DScene();
90  win.repaint();
91 
92  win2.get3DSceneAndLock();
93  gl_view_aux->setImageView(std::move(o->image));
94  win2.unlockAccess3DScene();
95  win2.repaint();
96  }
97  }
98  }
99 }
100 
101 // ------------------------------------------------------
102 // MAIN
103 // ------------------------------------------------------
104 int main()
105 {
106  try
107  {
108  TestOpenGLVideo();
109 
110  return 0;
111  }
112  catch (const std::exception& e)
113  {
114  std::cerr << "MRPT error: " << mrpt::exception_to_str(e) << std::endl;
115  return -1;
116  }
117  catch (...)
118  {
119  printf("Untyped exception!!");
120  return -1;
121  }
122 }
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)
Definition: format.h:26
void TestOpenGLVideo()
STL namespace.
#define ASSERT_(f)
Defines an assertion mechanism.
Definition: exceptions.h:120
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...
Definition: CObject.h:146
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.
Definition: CGlCanvasBase.h:13
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...
Definition: exceptions.cpp:59
Classes for creating GUI windows for 2D and 3D visualization.
Definition: about_box.h:14
static Ptr Create(Args &&... args)
Definition: CGridPlaneXY.h:31
A graphical user interface (GUI) for efficiently rendering 3D scenes in real-time.



Page generated by Doxygen 1.8.14 for MRPT 2.0.1 Git: 0fef1a6d7 Fri Apr 3 23:00:21 2020 +0200 at vie abr 3 23:20:28 CEST 2020