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/system/CTicTac.h>
15 #include <iostream>
16 
17 using namespace mrpt;
18 using namespace mrpt::obs;
19 using namespace mrpt::opengl;
20 using namespace mrpt::hwdrivers;
21 using namespace mrpt::system;
22 using namespace mrpt::img;
23 using namespace std;
24 
25 // This simple demo records form an OpenNI2 device into a rawlog as 3D
26 // observations. It's meant as a temporary workaround before OpenNI2 is
27 // integrated as a generic sensor so that it works with rawlog-grabber.
28 
29 int main(int argc, char** argv)
30 {
31  try
32  {
33  if (argc > 2)
34  {
35  cerr << "Usage: " << argv[0] << " <sensor_id/sensor_serial\n";
36  cerr << "Example: " << argv[0] << " 0 \n";
37  return 1;
38  }
39 
40  // const unsigned sensor_id = 0;
41  COpenNI2Sensor rgbd_sensor;
42  // rgbd_sensor.loadConfig_sensorSpecific(const
43  // mrpt::config::CConfigFileBase &configSource, const std::string
44  // &iniSection );
45 
46  unsigned sensor_id_or_serial = 0;
47  // const string configFile = std::string( argv[2] );
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  bool showImages = false;
68  if (showImages)
69  {
71 
72  CTicTac tictac;
73  tictac.Tic();
74  unsigned int nFrames = 0;
76  bool bObs = false, bError = true;
77  rgbd_sensor.getNextObservation(newObs, bObs, bError);
78 
79  while (!system::os::kbhit())
80  {
81  cout << "Get a new frame\n";
82  rgbd_sensor.getNextObservation(newObs, bObs, bError);
83 
84  double fps = ++nFrames / tictac.Tac();
85  // newObs->intensityImage.textOut(5,5,format("%.02f
86  // fps",fps),TColor(0x80,0x80,0x80) );
87  cout << "FPS: " << fps << endl;
88 
89  if (nFrames > 100)
90  {
91  tictac.Tic();
92  nFrames = 0;
93  }
94 
95  win.showImage(newObs.intensityImage);
96  std::this_thread::sleep_for(10ms);
97  }
98  }
99  else // Show point cloud and images
100  {
101  // Create window and prepare OpenGL object in the scene:
102  // --------------------------------------------------------
103  mrpt::gui::CDisplayWindow3D win3D("OpenNI2 3D view", 800, 600);
104 
105  win3D.setCameraAzimuthDeg(140);
106  win3D.setCameraElevationDeg(20);
107  win3D.setCameraZoom(8.0);
108  win3D.setFOV(90);
109  win3D.setCameraPointingToPoint(2.5, 0, 0);
110 
113  gl_points->setPointSize(2.5);
114 
116  viewInt; // Extra viewports for the RGB images.
117  {
119  win3D.get3DSceneAndLock();
120 
121  // Create the Opengl object for the point cloud:
122  scene->insert(gl_points);
123  scene->insert(mrpt::opengl::CGridPlaneXY::Create());
125 
126  const double aspect_ratio = 480.0 / 640.0;
127  const int VW_WIDTH = 400; // Size of the viewport into the
128  // window, in pixel units.
129  const int VW_HEIGHT = aspect_ratio * VW_WIDTH;
130 
131  // Create an extra opengl viewport for the RGB image:
132  viewInt = scene->createViewport("view2d_int");
133  viewInt->setViewportPosition(5, 30, VW_WIDTH, VW_HEIGHT);
134  win3D.addTextMessage(
135  10, 30 + VW_HEIGHT + 10, "Intensity data", 2);
136 
137  win3D.addTextMessage(
138  5, 5, "'o'/'i'-zoom out/in, ESC: quit", 110);
139 
140  win3D.unlockAccess3DScene();
141  win3D.repaint();
142  }
143 
144  // Grab frames continuously and show
145  //========================================================================================
146 
147  bool bObs = false, bError = true;
149 
150  while (!win3D.keyHit()) // Push any key to exit // win3D.isOpen()
151  {
152  // cout << "Get new observation\n";
155  rgbd_sensor.getNextObservation(*newObs, bObs, bError);
156 
157  if (bObs && !bError && newObs &&
158  newObs->timestamp != INVALID_TIMESTAMP &&
159  newObs->timestamp != last_obs_tim)
160  {
161  // It IS a new observation:
162  last_obs_tim = newObs->timestamp;
163 
164  // Update visualization
165  // ---------------------------------------
166 
167  win3D.get3DSceneAndLock();
168 
169  // Estimated grabbing rate:
170  win3D.addTextMessage(
171  -350, -13,
172  format(
173  "Timestamp: %s",
175  .c_str()),
176  100);
177 
178  // Show intensity image:
179  if (newObs->hasIntensityImage)
180  {
181  viewInt->setImageView(
182  newObs->intensityImage); // This is not "_fast"
183  // since the intensity
184  // image may be needed
185  // later on.
186  }
187  win3D.unlockAccess3DScene();
188 
189  // -------------------------------------------------------
190  // Create 3D points from RGB+D data
191  //
192  // There are several methods to do this.
193  // Switch the #if's to select among the options:
194  // See also:
195  // https://www.mrpt.org/Generating_3D_point_clouds_from_RGB_D_observations
196  // -------------------------------------------------------
197  if (newObs->hasRangeImage)
198  {
199 #if 0
200  static pcl::PointCloud<pcl::PointXYZRGB> cloud;
201  newObs->unprojectInto(cloud, false /* without obs.sensorPose */);
202 
203  win3D.get3DSceneAndLock();
204  gl_points->loadFromPointsMap(&cloud);
205  win3D.unlockAccess3DScene();
206 #endif
207 
208 // Pathway: RGB+D --> XYZ+RGB opengl
209 #if 1
210  win3D.get3DSceneAndLock();
213  newObs->unprojectInto(
214  *gl_points, pp /* without obs.sensorPose */);
215  win3D.unlockAccess3DScene();
216 #endif
217  }
218 
219  win3D.repaint();
220  } // end update visualization:
221  }
222  }
223 
224  cout << "\nClosing RGBD sensor...\n";
225 
226  return 0;
227  }
228  catch (const std::exception& e)
229  {
230  std::cerr << "MRPT error: " << mrpt::exception_to_str(e) << std::endl;
231  return -1;
232  }
233  catch (...)
234  {
235  printf("Untyped exception!!");
236  return -1;
237  }
238 }
double Tac() noexcept
Stops the stopwatch.
Definition: CTicTac.cpp:86
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
A high-performance stopwatch, with typical resolution of nanoseconds.
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().
A range or depth 3D scan measurement, as from a time-of-flight range camera or a structured-light dep...
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...
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.
This class creates a window as a graphical user interface (GUI) for displaying images to the user...
mrpt::img::CImage intensityImage
If hasIntensityImage=true, a color or gray-level intensity image of the same size than "rangeImage"...
This namespace contains representation of robot actions and observations.
mrpt::gui::CDisplayWindow3D::Ptr win
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
bool kbhit() noexcept
An OS-independent version of kbhit, which returns true if a key has been pushed.
Definition: os.cpp:392
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
void Tic() noexcept
Starts the stopwatch.
Definition: CTicTac.cpp:75
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