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/img/TColor.h>
13 #include <mrpt/opengl.h>
14 #include <mrpt/opengl/CPlanarLaserScan.h> // This class is in mrpt-maps
15 #include <mrpt/system/CTicTac.h>
16 #include <iostream>
17 
18 using namespace mrpt;
19 using namespace mrpt::obs;
20 using namespace mrpt::opengl;
21 using namespace mrpt::hwdrivers;
22 using namespace mrpt::img;
23 using namespace std;
24 
25 const float vert_FOV = 4.0_deg;
26 
27 // This demo records from an OpenNI2 device, convert observations to 2D scans
28 // and runs 2d-icp-slam with them.
29 
30 int main(int argc, char** argv)
31 {
32  try
33  {
34  if (argc > 2)
35  {
36  cerr << "Usage: " << argv[0] << " <sensor_id/sensor_serial\n";
37  cerr << "Example: " << argv[0] << " 0 \n";
38  return 1;
39  }
40 
41  // const unsigned sensor_id = 0;
42  COpenNI2Sensor rgbd_sensor;
43  // rgbd_sensor.loadConfig_sensorSpecific(const
44  // mrpt::config::CConfigFileBase &configSource, const std::string
45  // &iniSection );
46 
47  unsigned sensor_id_or_serial = 0;
48  if (argc == 2)
49  {
50  sensor_id_or_serial = atoi(argv[1]);
51  if (sensor_id_or_serial > 10)
52  rgbd_sensor.setSerialToOpen(sensor_id_or_serial);
53  else
54  rgbd_sensor.setSensorIDToOpen(sensor_id_or_serial);
55  }
56 
57  // Open:
58  // cout << "Calling COpenNI2Sensor::initialize()...";
59  rgbd_sensor.initialize();
60 
61  if (rgbd_sensor.getNumDevices() == 0) return 0;
62 
63  cout << "OK " << rgbd_sensor.getNumDevices() << " available devices."
64  << endl;
65  cout << "\nUse device " << sensor_id_or_serial << endl << endl;
66 
67  // Create window and prepare OpenGL object in the scene:
68  // --------------------------------------------------------
69  mrpt::gui::CDisplayWindow3D win3D("OpenNI2 3D view", 800, 600);
70 
71  win3D.setCameraAzimuthDeg(140);
72  win3D.setCameraElevationDeg(20);
73  win3D.setCameraZoom(8.0);
74  win3D.setFOV(90);
75  win3D.setCameraPointingToPoint(2.5, 0, 0);
76 
79  gl_points->setPointSize(2.5);
80 
81  // The 2D "laser scan" OpenGL object:
84  gl_2d_scan->enablePoints(true);
85  gl_2d_scan->enableLine(true);
86  gl_2d_scan->enableSurface(true);
87  gl_2d_scan->setSurfaceColor(0, 0, 1, 0.3); // RGBA
88 
90  viewInt; // Extra viewports for the RGB images.
91  {
92  mrpt::opengl::COpenGLScene::Ptr& scene = win3D.get3DSceneAndLock();
93 
94  // Create the Opengl object for the point cloud:
95  scene->insert(gl_points);
96  scene->insert(mrpt::opengl::CGridPlaneXY::Create());
98  scene->insert(gl_2d_scan);
99 
100  const double aspect_ratio = 480.0 / 640.0;
101  const int VW_WIDTH =
102  400; // Size of the viewport into the window, in pixel units.
103  const int VW_HEIGHT = aspect_ratio * VW_WIDTH;
104 
105  // Create an extra opengl viewport for the RGB image:
106  viewInt = scene->createViewport("view2d_int");
107  viewInt->setViewportPosition(5, 30, VW_WIDTH, VW_HEIGHT);
108  win3D.addTextMessage(10, 30 + VW_HEIGHT + 10, "Intensity data", 2);
109 
110  win3D.addTextMessage(5, 5, "'o'/'i'-zoom out/in, ESC: quit", 110);
111 
112  win3D.unlockAccess3DScene();
113  win3D.repaint();
114  }
115 
116  // Grab frames continuously and show
117  //========================================================================================
118 
119  bool bObs = false, bError = true;
121 
122  while (!win3D.keyHit()) // Push any key to exit // win3D.isOpen()
123  {
124  // cout << "Get new observation\n";
127  rgbd_sensor.getNextObservation(*newObs, bObs, bError);
128 
129  CObservation2DRangeScan::Ptr obs_2d; // The equivalent 2D scan
130 
131  if (bObs && !bError && newObs &&
132  newObs->timestamp != INVALID_TIMESTAMP &&
133  newObs->timestamp != last_obs_tim)
134  {
135  // It IS a new observation:
136  last_obs_tim = newObs->timestamp;
137 
138  // Convert ranges to an equivalent 2D "fake laser" scan:
139  if (newObs->hasRangeImage)
140  {
141  // Convert to scan:
143 
145  p2s.angle_sup = .5f * vert_FOV;
146  p2s.angle_inf = .5f * vert_FOV;
147  p2s.sensorLabel = "KINECT_2D_SCAN";
148  newObs->convertTo2DScan(*obs_2d, p2s);
149  }
150 
151  // Update visualization ---------------------------------------
152 
153  win3D.get3DSceneAndLock();
154 
155  // Estimated grabbing rate:
156  win3D.addTextMessage(
157  -350, -13,
158  format(
159  "Timestamp: %s",
161  .c_str()),
162  100);
163 
164  // Show intensity image:
165  if (newObs->hasIntensityImage)
166  {
167  viewInt->setImageView(
168  newObs->intensityImage); // This is not "_fast" since
169  // the intensity image may be
170  // needed later on.
171  }
172  win3D.unlockAccess3DScene();
173 
174  // -------------------------------------------------------
175  // Create 3D points from RGB+D data
176  //
177  // There are several methods to do this.
178  // Switch the #if's to select among the options:
179  // See also:
180  // https://www.mrpt.org/Generating_3D_point_clouds_from_RGB_D_observations
181  // -------------------------------------------------------
182  if (newObs->hasRangeImage)
183  {
184  // Pathway: RGB+D --> XYZ+RGB opengl
185  win3D.get3DSceneAndLock();
188  newObs->unprojectInto(
189  *gl_points, pp /* without obs.sensorPose */);
190  win3D.unlockAccess3DScene();
191  }
192 
193  // And load scan in the OpenGL object:
194  gl_2d_scan->setScan(*obs_2d);
195 
196  win3D.repaint();
197  } // end update visualization:
198  }
199 
200  cout << "\nClosing RGBD sensor...\n";
201 
202  return 0;
203  }
204  catch (const std::exception& e)
205  {
206  std::cerr << "MRPT error: " << mrpt::exception_to_str(e) << std::endl;
207  return -1;
208  }
209  catch (...)
210  {
211  printf("Untyped exception!!");
212  return -1;
213  }
214 }
int getNumDevices() const
The number of available devices at initialization.
static Ptr Create(Args &&... args)
std::string std::string format(std::string_view fmt, ARGS &&... args)
Definition: format.h:26
static Ptr Create(Args &&... args)
std::string sensorLabel
The sensor label that will have the newly created observation.
double angle_sup
(Default=5 degrees) [Only if use_origin_sensor_pose=false] The upper & lower half-FOV angle (in radia...
void getNextObservation(mrpt::obs::CObservation3DRangeScan &out_obs, bool &there_is_obs, bool &hardware_error)
The main data retrieving function, to be called after calling loadConfig() and initialize().
Contains classes for various device interfaces.
STL namespace.
A class for grabing "range images", intensity images (either RGB or IR) and other information from an...
const float vert_FOV
mrpt::Clock::time_point TTimeStamp
A system independent time type, it holds the the number of 100-nanosecond intervals since January 1...
Definition: datetime.h:40
void setSerialToOpen(const unsigned serial)
Set the serial number of the device to open.
Used in CObservation3DRangeScan::convertTo2DScan()
This namespace contains representation of robot actions and observations.
void setSensorIDToOpen(const unsigned sensor_id)
Set the sensor_id of the device to open.
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
const char * argv[]
CSetOfObjects::Ptr CornerXYZ(float scale=1.0)
Returns three arrows representing a X,Y,Z 3D corner.
Used in CObservation3DRangeScan::unprojectInto()
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
void initialize() override
Initializes the 3D camera - should be invoked after calling loadConfig() or setting the different par...
const int argc
std::string dateTimeLocalToString(const mrpt::system::TTimeStamp t)
Convert a timestamp into this textual form (in local time): YEAR/MONTH/DAY,HH:MM:SS.MMM.
Definition: datetime.cpp:176
static Ptr Create(Args &&... args)
Definition: CGridPlaneXY.h:31
#define INVALID_TIMESTAMP
Represents an invalid timestamp, where applicable.
Definition: datetime.h:43
bool takeIntoAccountSensorPoseOnRobot
(Default: false) If false, local (sensor-centric) coordinates of points are generated.
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