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/img/CImage.h>
12 #include <mrpt/opengl/CFBORender.h>
14 #include <iostream>
15 
16 using namespace std;
17 using namespace mrpt;
18 using namespace mrpt::opengl;
19 using namespace mrpt::io;
20 using namespace mrpt::serialization;
21 using namespace mrpt::img;
22 // ------------------------------------------------------
23 // TestOffscreenRender
24 // ------------------------------------------------------
25 int TestOffscreenRender(int argc, char* argv[])
26 {
27  if (argc != 5)
28  {
29  cerr
30  << "Usage: " << argv[0]
31  << " <FILE.3Dscene> <WIDTH> <HEIGHT> <OUTPUT_IMAGE>\n"
32  " Output image can be in many formats: .png, .jpg, .tif, etc.\n";
33  return 1;
34  }
35 
36  const string sFil = argv[1];
37  const int width = atoi(argv[2]);
38  const int height = atoi(argv[3]);
39  const string sOut = argv[4];
40 
41  ASSERT_ABOVE_(width, 0);
42  ASSERT_ABOVE_(height, 0);
43 
44  COpenGLScene scene;
45  CFileGZInputStream f(sFil);
46  archiveFrom(f) >> scene;
47 
48  CFBORender render(width, height);
49  CImage frame(width, height, CH_RGB);
50 
51  // here you can put your preferred camera rendering position
52  {
53  CCamera& camera = render.getCamera(scene);
54  camera.setOrthogonal(true);
55  camera.setZoomDistance(70);
56  camera.setAzimuthDegrees(-90);
57  camera.setElevationDegrees(90);
58  }
59 
60  // render the scene
61  render.getFrame2(scene, frame);
62  frame.saveToFile(sOut);
63 
64  return 0;
65 }
66 
67 // ------------------------------------------------------
68 // MAIN
69 // ------------------------------------------------------
70 int main(int argc, char* argv[])
71 {
72  try
73  {
74  return TestOffscreenRender(argc, argv);
75  }
76  catch (const std::exception& e)
77  {
78  std::cerr << "MRPT error: " << mrpt::exception_to_str(e) << std::endl;
79  return -1;
80  }
81  catch (...)
82  {
83  printf("Untyped exception!!");
84  return -1;
85  }
86 }
void setOrthogonal(bool v=true)
Enable/Disable orthogonal mode (vs.
Definition: CCamera.h:72
STL namespace.
void setZoomDistance(float z)
Definition: CCamera.h:63
CArchiveStreamBase< STREAM > archiveFrom(STREAM &s)
Helper function to create a templatized wrapper CArchive object for a: MRPT&#39;s CStream, std::istream, std::ostream, std::stringstream.
Definition: CArchive.h:592
void setAzimuthDegrees(float ang)
Definition: CCamera.h:67
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
const char * argv[]
void setElevationDegrees(float ang)
Definition: CCamera.h:68
#define ASSERT_ABOVE_(__A, __B)
Definition: exceptions.h:155
The namespace for 3D scene representation and rendering.
Definition: CGlCanvasBase.h:13
This class allows the user to create, load, save, and render 3D scenes using OpenGL primitives...
Definition: COpenGLScene.h:56
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
Transparently opens a compressed "gz" file and reads uncompressed data from it.
const int argc
int TestOffscreenRender(int argc, char *argv[])
A camera: if added to a scene, the viewpoint defined by this camera will be used instead of the camer...
Definition: CCamera.h:33
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