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/CText.h>
14 #include <iostream>
15 
16 #include <mrpt/examples_config.h>
17 const std::string myTestFile(
18  MRPT_EXAMPLES_BASE_DIRECTORY +
19  std::string("img_basic_example/frame_color.jpg"));
20 
21 using namespace std;
22 using namespace mrpt;
23 using namespace mrpt::gui;
24 using namespace mrpt::opengl;
25 using namespace mrpt::math;
26 using namespace mrpt::img;
27 
28 // ------------------------------------------------------
29 // TextureSizes_test
30 // ------------------------------------------------------
31 void TextureSizes_test()
32 {
33  // Prepare a few test images: color & BW, random size and 2^N size.
34  // -------------------------------------------------------------------
35  CImage imgCol_N, imgBW_N;
36  CImage imgCol_2N, imgBW_2N;
37 
38  if (!imgCol_N.loadFromFile(myTestFile))
39  {
40  cerr << "Cannot load " << myTestFile << endl;
41  return;
42  }
43 
44  imgCol_N.scaleImage(imgCol_2N, 512, 512);
45 
46  imgCol_N.grayscale(imgBW_N);
47  imgCol_2N.grayscale(imgBW_2N);
48 
49  // Masks:
50  const int W = imgCol_N.getWidth();
51  const int H = imgCol_N.getHeight();
52 
53  CImage transpMask_N(W, H, CH_GRAY);
54  for (int y = 0; y < H; y++)
55  for (int x = 0; x < W; x++)
56  *transpMask_N(x, y) = (((x + y) >> 5) & 1) ? 240 : 10;
57 
58  CImage transpMask_2N;
59  transpMask_N.scaleImage(transpMask_2N, 512, 512);
60 
61  cout << "Loaded image size: " << imgCol_N.getWidth() << "x"
62  << imgCol_N.getHeight() << endl;
63  cout << "2^N image size : " << imgCol_2N.getWidth() << "x"
64  << imgCol_2N.getHeight() << endl;
65 
66  CDisplayWindow3D win("Test of MRPT's OpenGL textures", 640, 480);
67 
68  COpenGLScene::Ptr& theScene = win.get3DSceneAndLock();
69 
70  double off_x = 0;
71  const double off_y_label = 4;
72  const double STEP_X = 15;
73 
74  if (true)
75  {
77  opengl::CTexturedPlane::Create(-3, 3, -3, 3);
78  obj->assignImage(imgCol_N);
79  obj->setLocation(off_x, 0, 0);
80  theScene->insert(obj);
81 
82  opengl::CText::Ptr gl_txt =
83  opengl::CText::Create("Color texture, random size, w/o transp");
84  gl_txt->setLocation(off_x, off_y_label, 0);
85  theScene->insert(gl_txt);
86  }
87  off_x += STEP_X;
88 
89  if (true)
90  {
92  opengl::CTexturedPlane::Create(-3, 3, -3, 3);
93  obj->assignImage(imgCol_N, transpMask_N);
94  obj->setLocation(off_x, 0, 0);
95  theScene->insert(obj);
96 
97  opengl::CText::Ptr gl_txt =
98  opengl::CText::Create("Color texture, random size, with transp");
99  gl_txt->setLocation(off_x, off_y_label, 0);
100  theScene->insert(gl_txt);
101  }
102  off_x += STEP_X;
103 
104  if (true)
105  {
107  opengl::CTexturedPlane::Create(-3, 3, -3, 3);
108  obj->assignImage(imgBW_N);
109  obj->setLocation(off_x, 0, 0);
110  theScene->insert(obj);
111 
112  opengl::CText::Ptr gl_txt =
113  opengl::CText::Create("B/W texture, random size, w/o transp");
114  gl_txt->setLocation(off_x, off_y_label, 0);
115  theScene->insert(gl_txt);
116  }
117  off_x += STEP_X;
118 
119  if (true)
120  {
122  opengl::CTexturedPlane::Create(-3, 3, -3, 3);
123  obj->assignImage(imgBW_N, transpMask_N);
124  obj->setLocation(off_x, 0, 0);
125  theScene->insert(obj);
126 
127  opengl::CText::Ptr gl_txt =
128  opengl::CText::Create("B/W texture, random size, with transp");
129  gl_txt->setLocation(off_x, off_y_label, 0);
130  theScene->insert(gl_txt);
131  }
132  off_x += STEP_X;
133 
134  if (true)
135  {
137  opengl::CTexturedPlane::Create(-3, 3, -3, 3);
138  obj->assignImage(imgCol_2N);
139  obj->setLocation(off_x, 0, 0);
140  theScene->insert(obj);
141 
142  opengl::CText::Ptr gl_txt =
143  opengl::CText::Create("Color texture, 2^N size, w/o transp");
144  gl_txt->setLocation(off_x, off_y_label, 0);
145  theScene->insert(gl_txt);
146  }
147  off_x += STEP_X;
148 
149  if (true)
150  {
152  opengl::CTexturedPlane::Create(-3, 3, -3, 3);
153  obj->assignImage(imgCol_2N, transpMask_2N);
154  obj->setLocation(off_x, 0, 0);
155  theScene->insert(obj);
156 
157  opengl::CText::Ptr gl_txt =
158  opengl::CText::Create("Color texture, 2^N size, with transp");
159  gl_txt->setLocation(off_x, off_y_label, 0);
160  theScene->insert(gl_txt);
161  }
162  off_x += STEP_X;
163 
164  if (true)
165  {
167  opengl::CTexturedPlane::Create(-3, 3, -3, 3);
168  obj->assignImage(imgBW_2N);
169  obj->setLocation(off_x, 0, 0);
170  theScene->insert(obj);
171 
172  opengl::CText::Ptr gl_txt =
173  opengl::CText::Create("B/W texture, 2^N size, w/o transp");
174  gl_txt->setLocation(off_x, off_y_label, 0);
175  theScene->insert(gl_txt);
176  }
177  off_x += STEP_X;
178 
179  if (true)
180  {
182  opengl::CTexturedPlane::Create(-3, 3, -3, 3);
183  obj->assignImage(imgBW_2N, transpMask_2N);
184  obj->setLocation(off_x, 0, 0);
185  theScene->insert(obj);
186 
187  opengl::CText::Ptr gl_txt =
188  opengl::CText::Create("B/W texture, 2^N size, with transp");
189  gl_txt->setLocation(off_x, off_y_label, 0);
190  theScene->insert(gl_txt);
191  }
192  off_x += STEP_X;
193 
194  win.setCameraZoom(150);
195  win.setCameraAzimuthDeg(90);
196 
197  // IMPORTANT!!! IF NOT UNLOCKED, THE WINDOW WILL NOT BE UPDATED!
198  win.unlockAccess3DScene();
199  win.repaint();
200 
201  cout << "Close the window to end.\n";
202  while (win.isOpen())
203  {
204  win.addTextMessage(5, 5, format("%.02fFPS", win.getRenderingFPS()));
205  std::this_thread::sleep_for(2ms);
206  win.repaint();
207  }
208 }
209 
210 // ------------------------------------------------------
211 // MAIN
212 // ------------------------------------------------------
213 int main()
214 {
215  try
216  {
218 
219  return 0;
220  }
221  catch (const std::exception& e)
222  {
223  std::cerr << "MRPT error: " << mrpt::exception_to_str(e) << std::endl;
224  return -1;
225  }
226  catch (...)
227  {
228  printf("Untyped exception!!");
229  return -1;
230  }
231 }
void TextureSizes_test()
std::string std::string format(std::string_view fmt, ARGS &&... args)
Definition: format.h:26
size_t getHeight() const override
Returns the height of the image in pixels.
Definition: CImage.cpp:849
void scaleImage(CImage &out_img, unsigned int width, unsigned int height, TInterpolationMethod interp=IMG_INTERP_CUBIC) const
Scales this image to a new size, interpolating as needed, saving the new image in a different output ...
Definition: CImage.cpp:1741
STL namespace.
bool loadFromFile(const std::string &fileName, int isColor=-1)
Load image from a file, whose format is determined from the extension (internally uses OpenCV)...
Definition: CImage.cpp:305
This base provides a set of functions for maths stuff.
size_t getWidth() const override
Returns the width of the image in pixels.
Definition: CImage.cpp:818
mrpt::gui::CDisplayWindow3D::Ptr win
CImage grayscale() const
Returns a grayscale version of the image, or a shallow copy of itself if it is already a grayscale im...
Definition: CImage.cpp:933
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
const std::string myTestFile(MRPT_EXAMPLES_BASE_DIRECTORY+std::string("img_basic_example/frame_color.jpg"))
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
A class for storing images as grayscale or RGB bitmaps.
Definition: img/CImage.h:148
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