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 
11 #include <mrpt/img/CImage.h>
12 #include <mrpt/opengl/CAxis.h>
13 #include <mrpt/opengl/CFBORender.h>
16 #include <mrpt/opengl/CSphere.h>
17 
18 #include <chrono>
19 #include <iostream>
20 #include <thread>
21 
22 using namespace mrpt;
23 using namespace mrpt::gui;
24 using namespace mrpt::opengl;
25 using namespace mrpt::img;
26 using namespace std::literals;
27 
28 // ------------------------------------------------------
29 // TestDisplay3D
30 // ------------------------------------------------------
31 void TestDisplay3D()
32 {
33  COpenGLScene scene;
34 
35  // Modify the scene:
36  // ------------------------------------------------------
37  {
39  opengl::CGridPlaneXY::Create(-20, 20, -20, 20, 0, 1);
40  obj->setColor(0.4f, 0.4f, 0.4f);
41  scene.insert(obj);
42  }
43  {
45  obj->setFrequency(5);
46  obj->enableTickMarks();
47  obj->setAxisLimits(-10, -10, -10, 10, 10, 10);
48  scene.insert(obj);
49  }
50  {
52  obj->setColor(0, 0, 1);
53  obj->setRadius(0.3f);
54  obj->setLocation(0, 0, 1);
55  obj->setName("ball_1");
56  scene.insert(obj);
57  }
58  {
60  obj->setColor(1, 0, 0);
61  obj->setRadius(0.3f);
62  obj->setLocation(-1, -1, 1);
63  obj->setName("ball_2");
64  scene.insert(obj);
65  }
66 
67  CDisplayWindow win("output");
68 
69  int c = 0, width = 640, height = 480;
70 
71  CFBORender render(width, height);
72  CImage frame(width, height, CH_RGB);
73 
74  {
75  CCamera& camera = render.getCamera(scene);
76  camera.setZoomDistance(50);
77  }
78 
79  while (!mrpt::system::os::kbhit())
80  {
81  CRenderizable::Ptr obj = scene.getByName("ball_1");
82  obj->setLocation(
83  obj->getPoseX() + cos(obj->getPoseY() / 2) * 0.05,
84  obj->getPoseY() - sin(obj->getPoseX() / 2) * 0.09,
85  obj->getPoseZ() - sin(obj->getPoseX() / 2) * 0.08);
86 
87  obj = scene.getByName("ball_2");
88  obj->setLocation(
89  obj->getPoseX() + cos(obj->getPoseY() / 2) * 0.05,
90  obj->getPoseY() - sin(obj->getPoseX() / 2) * 0.09,
91  obj->getPoseZ() - sin(obj->getPoseX() / 2) * 0.08);
92 
93  // change the size
94  if (++c > 100)
95  {
96  width = 800, height = 600;
97  frame.resize(width, height, CH_RGB);
98  render.resize(width, height);
99  }
100 
101  // render the scene
102  render.getFrame2(scene, frame);
103 
104  // show the redered image
105  win.showImage(frame);
106 
107  std::this_thread::sleep_for(50ms);
108  }
109 }
110 
111 // ------------------------------------------------------
112 // MAIN
113 // ------------------------------------------------------
114 int main(int argc, char* argv[])
115 {
116  try
117  {
118  TestDisplay3D();
119  return 0;
120  }
121  catch (const std::exception& e)
122  {
123  std::cerr << "MRPT error: " << mrpt::exception_to_str(e) << std::endl;
124  return -1;
125  }
126  catch (...)
127  {
128  printf("Untyped exception!!");
129  return -1;
130  }
131 }
static Ptr Create(Args &&... args)
Definition: CAxis.h:31
void setZoomDistance(float z)
Definition: CCamera.h:63
This class creates a window as a graphical user interface (GUI) for displaying images to the user...
mrpt::gui::CDisplayWindow3D::Ptr win
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
const char * argv[]
CRenderizable::Ptr getByName(const std::string &str, const std::string &viewportName=std::string("main"))
Returns the first object with a given name, or nullptr (an empty smart pointer) if not found...
The namespace for 3D scene representation and rendering.
Definition: CGlCanvasBase.h:13
bool kbhit() noexcept
An OS-independent version of kbhit, which returns true if a key has been pushed.
Definition: os.cpp:392
This class allows the user to create, load, save, and render 3D scenes using OpenGL primitives...
Definition: COpenGLScene.h:56
static Ptr Create(Args &&... args)
Definition: CSphere.h:31
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
const int argc
A camera: if added to a scene, the viewpoint defined by this camera will be used instead of the camer...
Definition: CCamera.h:33
void insert(const CRenderizable::Ptr &newObject, const std::string &viewportName=std::string("main"))
Insert a new object into the scene, in the given viewport (by default, into the "main" viewport)...
static Ptr Create(Args &&... args)
Definition: CGridPlaneXY.h:31
void TestDisplay3D()
A class for storing images as grayscale or RGB bitmaps.
Definition: img/CImage.h:148
A class for rendering 3D scenes off-screen directly into an image using OpenGL extensions (glext)...
Definition: CFBORender.h:26



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