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 // -----------------------------------------------------------------------------------------------------------------------
11 // For this example, the rawlog file must contain both laser data and stereo
12 // images (only the left one will be considered)
13 // It may be used with single image observations -> just employ
14 // "CObservationImage::Ptr" instead of "CObservationStereoImages::Ptr"
15 // and access to the contained "image" instead of "imageLeft".
16 // -----------------------------------------------------------------------------------------------------------------------
17 
25 #include <mrpt/obs/CRawlog.h>
26 #include <mrpt/obs/CSensoryFrame.h>
28 #include <mrpt/system/filesystem.h>
29 #include <mrpt/system/os.h>
30 #include <iostream>
31 
32 using namespace mrpt;
33 using namespace mrpt::obs;
34 using namespace mrpt::maps;
35 using namespace mrpt::gui;
36 using namespace mrpt::system;
37 using namespace mrpt::math;
38 using namespace mrpt::poses;
39 using namespace mrpt::img;
40 using namespace std;
41 
42 #include <mrpt/examples_config.h>
43 
44 // Default path, or user path passed thru command line:
45 std::string RAWLOG_FILE = MRPT_EXAMPLES_BASE_DIRECTORY
46  "../share/mrpt/datasets/localization_demo.rawlog";
47 
48 // ------------------------------------------------------
49 // TestGeometry3D
50 // ------------------------------------------------------
51 void TestLaser2Imgs()
52 {
53  // Set your rawlog file name
56  "Rawlog file does not exist: %s", RAWLOG_FILE.c_str());
57 
59  CSensoryFrame::Ptr observations;
60  size_t rawlogEntry = 0;
61  // bool end = false;
62  CDisplayWindow wind;
63 
64  // Set relative path for externally-stored images in rawlogs:
65  string rawlog_images_path = extractFileDirectory(RAWLOG_FILE);
66  rawlog_images_path += "/Images";
67  CImage::setImagesPathBase(rawlog_images_path); // Set it.
68 
70 
71  for (;;)
72  {
73  if (os::kbhit())
74  {
75  char c = os::getch();
76  if (c == 27) break;
77  }
78 
79  // Load action/observation pair from the rawlog:
80  // --------------------------------------------------
81  cout << "Reading act/oct pair from rawlog..." << endl;
82  auto arch = mrpt::serialization::archiveFrom(rawlogFile);
84  arch, action, observations, rawlogEntry))
85  break; // file EOF
86 
87  // CAMERA............
88  // Get CObservationStereoImages
91 
92  sImgs = observations->getObservationByClass<CObservationStereoImages>();
93  if (!sImgs)
94  {
95  Img = observations->getObservationByClass<CObservationImage>();
96  if (!Img) continue;
97  }
98 
99  CPose3D cameraPose; // Get Camera Pose (B) (CPose3D)
100  CMatrixDouble33 K; // Get Calibration matrix (K)
101 
102  sImgs ? sImgs->getSensorPose(cameraPose)
103  : Img->getSensorPose(cameraPose);
104  K = sImgs ? sImgs->leftCamera.intrinsicParams
105  : Img->cameraParams.intrinsicParams;
106 
107  // LASER.............
108  // Get CObservationRange2D
109  CObservation2DRangeScan::Ptr laserScan =
110  observations->getObservationByClass<CObservation2DRangeScan>();
111  if (!laserScan) continue;
112 
113  // Get Laser Pose (A) (CPose3D)
114  CPose3D laserPose;
115  laserScan->getSensorPose(laserPose);
116 
117  if (std::abs(laserPose.yaw()) > 90.0_deg)
118  continue; // Only front lasers
119 
120  // Get 3D Point relative to the Laser coordinate Frame (P1) (CPoint3D)
121  CPoint3D point;
122  CSimplePointsMap mapa;
124  observations->insertObservationsInto(
125  &mapa); // <- The map contains the pose of the points (P1)
126 
127  // Get the points into the map
128  vector<float> X, Y, Z;
129  vector<float>::iterator itX, itY, itZ;
130  mapa.getAllPoints(X, Y, Z);
131 
132  unsigned int imgW =
133  sImgs ? sImgs->imageLeft.getWidth() : Img->image.getWidth();
134  unsigned int imgH =
135  sImgs ? sImgs->imageLeft.getHeight() : Img->image.getHeight();
136 
137  // unsigned int idx = 0;
138  vector<float> imgX, imgY;
139  vector<float>::iterator itImgX, itImgY;
140  imgX.resize(X.size());
141  imgY.resize(Y.size());
142 
143  CImage image;
144  image = sImgs ? sImgs->imageLeft : Img->image;
145 
146  // Get pixels in the image:
147  // Pimg = (kx,ky,k)^T = K(I|0)*P2
148  // Main loop
149  for (itX = X.begin(), itY = Y.begin(), itZ = Z.begin(),
150  itImgX = imgX.begin(), itImgY = imgY.begin();
151  itX != X.end(); itX++, itY++, itZ++, itImgX++, itImgY++)
152  {
153  // Coordinates Transformation
154  CPoint3D pLaser(*itX, *itY, *itZ);
155  CPoint3D pCamera(pLaser - cameraPose);
156 
157  if (pCamera.z() > 0)
158  {
159  *itImgX = -K(0, 0) * ((pCamera.x()) / (pCamera.z())) + K(0, 2);
160  *itImgY = -K(1, 1) * ((pCamera.y()) / (pCamera.z())) + K(1, 2);
161 
162  if (*itImgX > 0 && *itImgX<imgW&& * itImgY> 0 && *itImgY < imgH)
163  image.filledRectangle(
164  *itImgX - 1, *itImgY - 1, *itImgX + 1, *itImgY + 1,
165  TColor(255, 0, 0));
166  } // end if
167  } // end for
168 
169  action.reset();
170  observations.reset();
171 
172  wind.showImage(image);
173 
174  std::this_thread::sleep_for(50ms);
175  }; // end for
176 
178 }
179 
180 // ------------------------------------------------------
181 // MAIN
182 // ------------------------------------------------------
183 int main(int argc, char** argv)
184 {
185  try
186  {
187  if (argc > 1)
188  {
189  RAWLOG_FILE = std::string(argv[1]);
190  }
191 
192  TestLaser2Imgs();
193  return 0;
194  }
195  catch (exception& e)
196  {
197  cerr << "EXCEPTION: " << e.what() << endl;
198  return -1;
199  }
200  catch (...)
201  {
202  cerr << "Untyped exception!!";
203  return -1;
204  }
205 }
Declares a class derived from "CObservation" that encapsules an image from a camera, whose relative pose to robot is also stored.
std::string RAWLOG_FILE
int getch() noexcept
An OS-independent version of getch, which waits until a key is pushed.
Definition: os.cpp:370
bool fileExists(const std::string &fileName)
Test if a given file (or directory) exists.
Definition: filesystem.cpp:128
double yaw() const
Get the YAW angle (in radians)
Definition: CPose3D.h:546
A cloud of points in 2D or 3D, which can be built from a sequence of laser scans. ...
STL namespace.
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
This base provides a set of functions for maths stuff.
virtual void filledRectangle(int x0, int y0, int x1, int y1, const mrpt::img::TColor color)
Draws a filled rectangle.
Definition: CCanvas.cpp:205
void getAllPoints(VECTOR &xs, VECTOR &ys, VECTOR &zs, size_t decimation=1) const
Returns a copy of the 2D/3D points as a std::vector of float coordinates.
Definition: CPointsMap.h:571
This class creates a window as a graphical user interface (GUI) for displaying images to the user...
void TestLaser2Imgs()
Observation class for either a pair of left+right or left+disparity images from a stereo camera...
This namespace contains representation of robot actions and observations.
A class used to store a 3D point.
Definition: CPoint3D.h:31
Classes for 2D/3D geometry representation, both of single values and probability density distribution...
void pause(const std::string &msg=std::string("Press any key to continue...")) noexcept
Shows the message "Press any key to continue" (or other custom message) to the current standard outpu...
Definition: os.cpp:430
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
const char * argv[]
A "CObservation"-derived class that represents a 2D range scan measurement (typically from a laser sc...
A class used to store a 3D pose (a 3D translation + a rotation in 3D).
Definition: CPose3D.h:85
bool kbhit() noexcept
An OS-independent version of kbhit, which returns true if a key has been pushed.
Definition: os.cpp:392
void showImage(const mrpt::img::CImage &img)
Show a given color or grayscale image on the window.
Transparently opens a compressed "gz" file and reads uncompressed data from it.
TInsertionOptions insertionOptions
The options used when inserting observations in the map.
Definition: CPointsMap.h:272
Classes for creating GUI windows for 2D and 3D visualization.
Definition: about_box.h:14
const int argc
A RGB color - 8bit.
Definition: TColor.h:25
static bool readActionObservationPair(mrpt::serialization::CArchive &inStream, CActionCollection::Ptr &action, CSensoryFrame::Ptr &observations, size_t &rawlogEntry)
Reads a consecutive pair action / observation from the rawlog opened at some input stream...
Definition: CRawlog.cpp:290
#define THROW_EXCEPTION_FMT(_FORMAT_STRING,...)
Definition: exceptions.h:69
std::string extractFileDirectory(const std::string &filePath)
Extract the whole path (the directory) of a filename from a complete path plus name plus extension...
Definition: filesystem.cpp:78
A class for storing images as grayscale or RGB bitmaps.
Definition: img/CImage.h:148
float minDistBetweenLaserPoints
The minimum distance between points (in 3D): If two points are too close, one of them is not inserted...
Definition: CPointsMap.h:233



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