Main MRPT website > C++ reference for MRPT 1.9.9
CColouredPointsMap.cpp
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2 | Mobile Robot Programming Toolkit (MRPT) |
3 | http://www.mrpt.org/ |
4 | |
5 | Copyright (c) 2005-2018, Individual contributors, see AUTHORS file |
6 | See: http://www.mrpt.org/Authors - All rights reserved. |
7 | Released under BSD License. See details in http://www.mrpt.org/License |
8 +------------------------------------------------------------------------+ */
9 
10 #include "maps-precomp.h" // Precomp header
11 
15 #include <mrpt/core/bits_mem.h>
16 #include <mrpt/img/color_maps.h>
17 #include <mrpt/system/os.h>
20 
21 #include "CPointsMap_crtp_common.h"
22 
23 using namespace std;
24 using namespace mrpt;
25 using namespace mrpt::maps;
26 using namespace mrpt::obs;
27 using namespace mrpt::img;
28 using namespace mrpt::poses;
29 using namespace mrpt::system;
30 using namespace mrpt::math;
31 using namespace mrpt::config;
32 
33 // =========== Begin of Map definition ============
35  "CColouredPointsMap,colourPointsMap", mrpt::maps::CColouredPointsMap)
36 
38 void CColouredPointsMap::TMapDefinition::loadFromConfigFile_map_specific(
39  const CConfigFileBase& source, const std::string& sectionNamePrefix)
40 {
41  insertionOpts.loadFromConfigFile(
42  source, sectionNamePrefix + string("_insertOpts"));
43  likelihoodOpts.loadFromConfigFile(
44  source, sectionNamePrefix + string("_likelihoodOpts"));
45  colourOpts.loadFromConfigFile(
46  source, sectionNamePrefix + string("_colorOpts"));
47 }
48 
49 void CColouredPointsMap::TMapDefinition::dumpToTextStream_map_specific(
50  std::ostream& out) const
51 {
52  this->insertionOpts.dumpToTextStream(out);
53  this->likelihoodOpts.dumpToTextStream(out);
54  this->colourOpts.dumpToTextStream(out);
55 }
56 
57 mrpt::maps::CMetricMap* CColouredPointsMap::internal_CreateFromMapDefinition(
59 {
61  *dynamic_cast<const CColouredPointsMap::TMapDefinition*>(&_def);
63  obj->insertionOptions = def.insertionOpts;
64  obj->likelihoodOptions = def.likelihoodOpts;
65  obj->colorScheme = def.colourOpts;
66  return obj;
67 }
68 // =========== End of Map definition Block =========
69 
71 
72 #if MRPT_HAS_PCL
73 #include <pcl/io/pcd_io.h>
74 #include <pcl/point_types.h>
75 //# include <pcl/registration/icp.h>
76 #endif
77 
78 void CColouredPointsMap::reserve(size_t newLength)
79 {
80  m_x.reserve(newLength);
81  m_y.reserve(newLength);
82  m_z.reserve(newLength);
83  m_color_R.reserve(newLength);
84  m_color_G.reserve(newLength);
85  m_color_B.reserve(newLength);
86 }
87 
88 // Resizes all point buffers so they can hold the given number of points: newly
89 // created points are set to default values,
90 // and old contents are not changed.
91 void CColouredPointsMap::resize(size_t newLength)
92 {
93  m_x.resize(newLength, 0);
94  m_y.resize(newLength, 0);
95  m_z.resize(newLength, 0);
96  m_color_R.resize(newLength, 1);
97  m_color_G.resize(newLength, 1);
98  m_color_B.resize(newLength, 1);
99  mark_as_modified();
100 }
101 
102 // Resizes all point buffers so they can hold the given number of points,
103 // *erasing* all previous contents
104 // and leaving all points to default values.
105 void CColouredPointsMap::setSize(size_t newLength)
106 {
107  m_x.assign(newLength, 0);
108  m_y.assign(newLength, 0);
109  m_z.assign(newLength, 0);
110  m_color_R.assign(newLength, 1);
111  m_color_G.assign(newLength, 1);
112  m_color_B.assign(newLength, 1);
113  mark_as_modified();
114 }
115 
116 /*---------------------------------------------------------------
117 Copy constructor
118 ---------------------------------------------------------------*/
119 void CColouredPointsMap::copyFrom(const CPointsMap& obj)
120 {
121  CPointsMap::base_copyFrom(
122  obj); // This also does a ::resize(N) of all data fields.
123 
124  const CColouredPointsMap* pCol =
125  dynamic_cast<const CColouredPointsMap*>(&obj);
126  if (pCol)
127  {
128  m_color_R = pCol->m_color_R;
129  m_color_G = pCol->m_color_G;
130  m_color_B = pCol->m_color_B;
131  // m_min_dist = pCol->m_min_dist;
132  }
133 }
134 
135 uint8_t CColouredPointsMap::serializeGetVersion() const { return 9; }
136 void CColouredPointsMap::serializeTo(mrpt::serialization::CArchive& out) const
137 {
138  uint32_t n = m_x.size();
139 
140  // First, write the number of points:
141  out << n;
142 
143  if (n > 0)
144  {
145  out.WriteBufferFixEndianness(&m_x[0], n);
146  out.WriteBufferFixEndianness(&m_y[0], n);
147  out.WriteBufferFixEndianness(&m_z[0], n);
148  }
149  out << m_color_R << m_color_G << m_color_B; // added in v4
150 
151  out << genericMapParams; // v9
152  insertionOptions.writeToStream(
153  out); // version 9?: insert options are saved with its own method
154  likelihoodOptions.writeToStream(out); // Added in version 5
155 }
156 
157 void CColouredPointsMap::serializeFrom(
159 {
160  switch (version)
161  {
162  case 8:
163  case 9:
164  {
165  mark_as_modified();
166 
167  // Read the number of points:
168  uint32_t n;
169  in >> n;
170 
171  this->resize(n);
172 
173  if (n > 0)
174  {
175  in.ReadBufferFixEndianness(&m_x[0], n);
176  in.ReadBufferFixEndianness(&m_y[0], n);
177  in.ReadBufferFixEndianness(&m_z[0], n);
178  }
179  in >> m_color_R >> m_color_G >> m_color_B;
180 
181  if (version >= 9)
182  in >> genericMapParams;
183  else
184  {
185  bool disableSaveAs3DObject;
186  in >> disableSaveAs3DObject;
187  genericMapParams.enableSaveAs3DObject = !disableSaveAs3DObject;
188  }
189  insertionOptions.readFromStream(in);
190  likelihoodOptions.readFromStream(in);
191  }
192  break;
193 
194  case 0:
195  case 1:
196  case 2:
197  case 3:
198  case 4:
199  case 5:
200  case 6:
201  case 7:
202  {
203  mark_as_modified();
204 
205  // Read the number of points:
206  uint32_t n;
207  in >> n;
208 
209  this->resize(n);
210 
211  if (n > 0)
212  {
213  in.ReadBufferFixEndianness(&m_x[0], n);
214  in.ReadBufferFixEndianness(&m_y[0], n);
215  in.ReadBufferFixEndianness(&m_z[0], n);
216 
217  // Version 1: weights are also stored:
218  // Version 4: Type becomes long int -> uint32_t for
219  // portability!!
220  if (version >= 1)
221  {
222  if (version >= 4)
223  {
224  if (version >= 7)
225  {
226  // Weights were removed from this class in v7 (MRPT
227  // 0.9.5),
228  // so nothing else to do.
229  }
230  else
231  {
232  // Go on with old serialization format, but discard
233  // weights:
234  std::vector<uint32_t> dummy_pointWeight(n);
235  in.ReadBufferFixEndianness(
236  &dummy_pointWeight[0], n);
237  }
238  }
239  else
240  {
241  std::vector<uint32_t> dummy_pointWeight(n);
242  in.ReadBufferFixEndianness(&dummy_pointWeight[0], n);
243  }
244  }
245  }
246 
247  if (version >= 2)
248  {
249  // version 2: options saved too
250  in >> insertionOptions.minDistBetweenLaserPoints >>
251  insertionOptions.addToExistingPointsMap >>
252  insertionOptions.also_interpolate >>
253  insertionOptions.disableDeletion >>
254  insertionOptions.fuseWithExisting >>
255  insertionOptions.isPlanarMap;
256 
257  if (version < 6)
258  {
259  bool old_matchStaticPointsOnly;
260  in >> old_matchStaticPointsOnly;
261  }
262 
263  in >> insertionOptions.maxDistForInterpolatePoints;
264  {
265  bool disableSaveAs3DObject;
266  in >> disableSaveAs3DObject;
267  genericMapParams.enableSaveAs3DObject =
268  !disableSaveAs3DObject;
269  }
270  }
271 
272  if (version >= 3)
273  {
274  in >> insertionOptions.horizontalTolerance;
275  }
276 
277  if (version >= 4) // Color data
278  {
279  in >> m_color_R >> m_color_G >> m_color_B;
280  if (version >= 7)
281  {
282  // Removed: in >> m_min_dist;
283  }
284  else
285  {
286  std::vector<float> dummy_dist;
287  in >> dummy_dist;
288  }
289  }
290  else
291  {
292  m_color_R.assign(m_x.size(), 1.0f);
293  m_color_G.assign(m_x.size(), 1.0f);
294  m_color_B.assign(m_x.size(), 1.0f);
295  // m_min_dist.assign(x.size(),2000.0f);
296  }
297 
298  if (version >= 5) // version 5: added likelihoodOptions
299  likelihoodOptions.readFromStream(in);
300 
301  if (version >= 8) // version 8: added insertInvalidPoints
302  in >> insertionOptions.insertInvalidPoints;
303  }
304  break;
305  default:
307  };
308 }
309 
310 /*---------------------------------------------------------------
311 Clear
312 ---------------------------------------------------------------*/
313 void CColouredPointsMap::internal_clear()
314 {
315  // This swap() thing is the only way to really deallocate the memory.
316  vector_strong_clear(m_x);
317  vector_strong_clear(m_y);
318  vector_strong_clear(m_z);
319 
320  vector_strong_clear(m_color_R);
321  vector_strong_clear(m_color_G);
322  vector_strong_clear(m_color_B);
323 
324  mark_as_modified();
325 }
326 
327 /** Changes a given point from map. First index is 0.
328  * \exception Throws std::exception on index out of bound.
329  */
330 void CColouredPointsMap::setPoint(
331  size_t index, float x, float y, float z, float R, float G, float B)
332 {
333  if (index >= m_x.size()) THROW_EXCEPTION("Index out of bounds");
334  m_x[index] = x;
335  m_y[index] = y;
336  m_z[index] = z;
337  this->m_color_R[index] = R;
338  this->m_color_G[index] = G;
339  this->m_color_B[index] = B;
340  mark_as_modified();
341 }
342 
343 /** Changes just the color of a given point from the map. First index is 0.
344  * \exception Throws std::exception on index out of bound.
345  */
346 void CColouredPointsMap::setPointColor(size_t index, float R, float G, float B)
347 {
348  if (index >= m_x.size()) THROW_EXCEPTION("Index out of bounds");
349  this->m_color_R[index] = R;
350  this->m_color_G[index] = G;
351  this->m_color_B[index] = B;
352  // mark_as_modified(); // No need to rebuild KD-trees, etc...
353 }
354 
355 void CColouredPointsMap::insertPointFast(float x, float y, float z)
356 {
357  m_x.push_back(x);
358  m_y.push_back(y);
359  m_z.push_back(z);
360  m_color_R.push_back(1);
361  m_color_G.push_back(1);
362  m_color_B.push_back(1);
363 
364  // mark_as_modified(); -> Fast
365 }
366 
367 void CColouredPointsMap::insertPoint(
368  float x, float y, float z, float R, float G, float B)
369 {
370  m_x.push_back(x);
371  m_y.push_back(y);
372  m_z.push_back(z);
373  m_color_R.push_back(R);
374  m_color_G.push_back(G);
375  m_color_B.push_back(B);
376 
377  mark_as_modified();
378 }
379 
380 /*---------------------------------------------------------------
381 getAs3DObject
382 ---------------------------------------------------------------*/
383 void CColouredPointsMap::getAs3DObject(
384  mrpt::opengl::CSetOfObjects::Ptr& outObj) const
385 {
386  ASSERT_(outObj);
387 
388  if (!genericMapParams.enableSaveAs3DObject) return;
389 
391  mrpt::make_aligned_shared<opengl::CPointCloudColoured>();
392 
393  obj->loadFromPointsMap(this);
394  obj->setColor(1, 1, 1, 1.0);
395 
396  obj->setPointSize(this->renderOptions.point_size);
397 
398  outObj->insert(obj);
399 }
400 
401 /*---------------------------------------------------------------
402 TColourOptions
403 ---------------------------------------------------------------*/
404 CColouredPointsMap::TColourOptions::TColourOptions()
405  : scheme(cmFromHeightRelativeToSensor), z_min(-10), z_max(10), d_max(5)
406 {
407 }
408 
410  const CConfigFileBase& source, const std::string& section)
411 {
412  scheme = source.read_enum(section, "scheme", scheme);
413  MRPT_LOAD_CONFIG_VAR(z_min, float, source, section)
414  MRPT_LOAD_CONFIG_VAR(z_max, float, source, section)
415  MRPT_LOAD_CONFIG_VAR(d_max, float, source, section)
416 }
417 
419  std::ostream& out) const
420 {
421  out << "\n----------- [CColouredPointsMap::TColourOptions] ------------ "
422  "\n\n";
423 
424  out << "scheme = " << scheme << endl;
425  out << "z_min = " << z_min << endl;
426  out << "z_max = " << z_max << endl;
427  out << "d_max = " << d_max << endl;
428 }
429 
431  size_t index, float& x, float& y, float& z) const
432 {
433  if (index >= m_x.size()) THROW_EXCEPTION("Index out of bounds");
434 
435  x = m_x[index];
436  y = m_y[index];
437  z = m_z[index];
438 
439  return 1; // Weight
440 }
441 
442 /*---------------------------------------------------------------
443 getPoint
444 ---------------------------------------------------------------*/
446  size_t index, float& x, float& y, float& z, float& R, float& G,
447  float& B) const
448 {
449  if (index >= m_x.size()) THROW_EXCEPTION("Index out of bounds");
450 
451  x = m_x[index];
452  y = m_y[index];
453  z = m_z[index];
454 
455  R = m_color_R[index];
456  G = m_color_G[index];
457  B = m_color_B[index];
458 }
459 
460 /** Retrieves a point color (colors range is [0,1])
461  */
463  size_t index, float& R, float& G, float& B) const
464 {
465  if (index >= m_x.size()) THROW_EXCEPTION("Index out of bounds");
466 
467  R = m_color_R[index];
468  G = m_color_G[index];
469  B = m_color_B[index];
470 }
471 
472 // This function is duplicated from
473 // "mrpt::vision::pinhole::projectPoint_with_distortion", to avoid
474 // a dependency on mrpt-vision.
476  const mrpt::math::TPoint3D& P, const TCamera& params, TPixelCoordf& pixel,
477  bool accept_points_behind)
478 {
479  MRPT_UNUSED_PARAM(accept_points_behind);
480  // Pinhole model:
481  const double x = P.x / P.z;
482  const double y = P.y / P.z;
483 
484  // Radial distortion:
485  const double r2 = square(x) + square(y);
486  const double r4 = square(r2);
487  const double r6 = r2 * r4;
488 
489  pixel.x = params.cx() +
490  params.fx() * (x * (1 + params.dist[0] * r2 +
491  params.dist[1] * r4 + params.dist[4] * r6) +
492  2 * params.dist[2] * x * y +
493  params.dist[3] * (r2 + 2 * square(x)));
494  pixel.y = params.cy() +
495  params.fy() * (y * (1 + params.dist[0] * r2 +
496  params.dist[1] * r4 + params.dist[4] * r6) +
497  2 * params.dist[3] * x * y +
498  params.dist[2] * (r2 + 2 * square(y)));
499 }
500 
501 /*---------------------------------------------------------------
502 getPoint
503 ---------------------------------------------------------------*/
505  const CObservationImage& obs, const CPose3D& robotPose)
506 {
507  // Check if image is not grayscale
508  ASSERT_(obs.image.isColor());
509 
510  CPose3D cameraPoseR; // Get Camera Pose on the Robot(B) (CPose3D)
511  CPose3D cameraPoseW; // World Camera Pose
512 
513  obs.getSensorPose(cameraPoseR);
514  cameraPoseW = robotPose + cameraPoseR; // Camera Global Coordinates
515 
516  // Image Information
517  unsigned int imgW = obs.image.getWidth();
518  unsigned int imgH = obs.image.getHeight();
519 
520  // Projection related variables
521  std::vector<TPixelCoordf>
522  projectedPoints; // The set of projected points in the image
524  itProPoints; // Iterator for projectedPoints
525  std::vector<size_t> p_idx;
526  std::vector<float> p_dist;
527  std::vector<unsigned int> p_proj;
528 
529  // Get the N closest points
531  cameraPoseW.x(), cameraPoseW.y(), // query point
532  200000, // number of points to search
533  p_idx, p_dist); // indexes and distances of the returned points
534 
535  // Fill p3D vector
536  for (size_t k = 0; k < p_idx.size(); k++)
537  {
538  float d = sqrt(p_dist[k]);
539  size_t idx = p_idx[k];
540  if (d < colorScheme.d_max) // && d < m_min_dist[idx] )
541  {
542  TPixelCoordf px;
544  TPoint3D(m_x[idx], m_y[idx], m_z[idx]), obs.cameraParams, px, true);
545  projectedPoints.push_back(px);
546  p_proj.push_back(k);
547  } // end if
548  } // end for
549 
550  // Get channel order
551  unsigned int chR, chG, chB;
552  if (obs.image.getChannelsOrder()[0] == 'B')
553  {
554  chR = 2;
555  chG = 1;
556  chB = 0;
557  }
558  else
559  {
560  chR = 0;
561  chG = 1;
562  chB = 2;
563  }
564 
565  unsigned int n_proj = 0;
566  const float factor = 1.0f / 255; // Normalize pixels:
567 
568  // Get the colour of the projected points
569  size_t k;
570  for (itProPoints = projectedPoints.begin(), k = 0;
571  itProPoints != projectedPoints.end(); ++itProPoints, ++k)
572  {
573  // Only get the points projected inside the image
574  if (itProPoints->x >= 0 && itProPoints->x < imgW &&
575  itProPoints->y > 0 && itProPoints->y < imgH)
576  {
577  unsigned int ii = p_idx[p_proj[k]];
578  uint8_t* p = obs.image(
579  (unsigned int)itProPoints->x, (unsigned int)itProPoints->y);
580 
581  m_color_R[ii] = p[chR] * factor; // R
582  m_color_G[ii] = p[chG] * factor; // G
583  m_color_B[ii] = p[chB] * factor; // B
584  // m_min_dist[ii] = p_dist[p_proj[k]];
585 
586  n_proj++;
587  }
588  } // end for
589 
590  return true;
591 } // end colourFromObservation
592 
594 {
595  MRPT_UNUSED_PARAM(defValue);
596  // m_min_dist.assign(x.size(),defValue);
597 }
598 
600  const std::string& file) const
601 {
602  FILE* f = os::fopen(file.c_str(), "wt");
603  if (!f) return false;
604 
605  for (unsigned int i = 0; i < m_x.size(); i++)
606  os::fprintf(
607  f, "%f %f %f %d %d %d\n", m_x[i], m_y[i], m_z[i],
608  (uint8_t)(255 * m_color_R[i]), (uint8_t)(255 * m_color_G[i]),
609  (uint8_t)(255 * m_color_B[i]));
610  // os::fprintf(f,"%f %f %f %f %f %f
611  //%f\n",x[i],y[i],z[i],m_color_R[i],m_color_G[i],m_color_B[i],m_min_dist[i]);
612 
613  os::fclose(f);
614  return true;
615 }
616 
617 // ================================ PLY files import & export virtual methods
618 // ================================
619 
620 /** In a base class, reserve memory to prepare subsequent calls to
621  * PLY_import_set_vertex */
623 {
624  this->setSize(N);
625 }
626 
627 /** In a base class, will be called after PLY_import_set_vertex_count() once for
628  * each loaded point.
629  * \param pt_color Will be nullptr if the loaded file does not provide color
630  * info.
631  */
633  const size_t idx, const mrpt::math::TPoint3Df& pt, const TColorf* pt_color)
634 {
635  if (pt_color)
636  this->setPoint(
637  idx, pt.x, pt.y, pt.z, pt_color->R, pt_color->G, pt_color->B);
638  else
639  this->setPoint(idx, pt.x, pt.y, pt.z);
640 }
641 
642 /** In a base class, will be called after PLY_export_get_vertex_count() once for
643  * each exported point.
644  * \param pt_color Will be nullptr if the loaded file does not provide color
645  * info.
646  */
648  const size_t idx, mrpt::math::TPoint3Df& pt, bool& pt_has_color,
649  TColorf& pt_color) const
650 {
651  pt_has_color = true;
652 
653  pt.x = m_x[idx];
654  pt.y = m_y[idx];
655  pt.z = m_z[idx];
656 
657  pt_color.R = m_color_R[idx];
658  pt_color.G = m_color_G[idx];
659  pt_color.B = m_color_B[idx];
660 }
661 
662 /*---------------------------------------------------------------
663 addFrom_classSpecific
664 ---------------------------------------------------------------*/
666  const CPointsMap& anotherMap, const size_t nPreviousPoints)
667 {
668  const size_t nOther = anotherMap.size();
669 
670  // Specific data for this class:
671  const CColouredPointsMap* anotheMap_col =
672  dynamic_cast<const CColouredPointsMap*>(&anotherMap);
673 
674  if (anotheMap_col)
675  {
676  for (size_t i = 0, j = nPreviousPoints; i < nOther; i++, j++)
677  {
678  m_color_R[j] = anotheMap_col->m_color_R[i];
679  m_color_G[j] = anotheMap_col->m_color_G[i];
680  m_color_B[j] = anotheMap_col->m_color_B[i];
681  }
682  }
683 }
684 
685 /** Save the point cloud as a PCL PCD file, in either ASCII or binary format
686  * \return false on any error */
688  const std::string& filename, bool save_as_binary) const
689 {
690 #if MRPT_HAS_PCL
691  pcl::PointCloud<pcl::PointXYZRGB> cloud;
692 
693  const size_t nThis = this->size();
694 
695  // Fill in the cloud data
696  cloud.width = nThis;
697  cloud.height = 1;
698  cloud.is_dense = false;
699  cloud.points.resize(cloud.width * cloud.height);
700 
701  const float f = 255.f;
702 
703  union myaux_t {
704  uint8_t rgb[4];
705  float f;
706  } aux_val;
707 
708  for (size_t i = 0; i < nThis; ++i)
709  {
710  cloud.points[i].x = m_x[i];
711  cloud.points[i].y = m_y[i];
712  cloud.points[i].z = m_z[i];
713 
714  aux_val.rgb[0] = static_cast<uint8_t>(this->m_color_B[i] * f);
715  aux_val.rgb[1] = static_cast<uint8_t>(this->m_color_G[i] * f);
716  aux_val.rgb[2] = static_cast<uint8_t>(this->m_color_R[i] * f);
717 
718  cloud.points[i].rgb = aux_val.f;
719  }
720 
721  return 0 == pcl::io::savePCDFile(filename, cloud, save_as_binary);
722 
723 #else
724  MRPT_UNUSED_PARAM(filename);
725  MRPT_UNUSED_PARAM(save_as_binary);
726  THROW_EXCEPTION("Operation not available: MRPT was built without PCL")
727 #endif
728 }
729 
730 namespace mrpt
731 {
732 namespace maps
733 {
734 namespace detail
735 {
737 
738 template <>
740 {
741  /** Helper method fot the generic implementation of
742  * CPointsMap::loadFromRangeScan(), to be called only once before inserting
743  * points - this is the place to reserve memory in lric for extra working
744  * variables. */
746  CColouredPointsMap& me,
748  {
749  // Vars:
750  // [0] -> pR
751  // [1] -> pG
752  // [2] -> pB
753  // [3] -> Az_1_color
754  lric.fVars.resize(4);
755 
757  lric.fVars[3] = 1.0 / (me.colorScheme.z_max - me.colorScheme.z_min);
758  }
759 
760  /** Helper method fot the generic implementation of
761  * CPointsMap::loadFromRangeScan(), to be called once per range data */
763  CColouredPointsMap& me, const float gx, const float gy, const float gz,
765  {
766  MRPT_UNUSED_PARAM(gx);
767  MRPT_UNUSED_PARAM(gy);
768  // Relative height of the point wrt the sensor:
769  const float rel_z = gz - lric.HM.get_unsafe(2, 3); // m23;
770 
771  // Variable renaming:
772  float& pR = lric.fVars[0];
773  float& pG = lric.fVars[1];
774  float& pB = lric.fVars[2];
775  const float& Az_1_color = lric.fVars[3];
776 
777  // Compute color:
778  switch (me.colorScheme.scheme)
779  {
780  // case cmFromHeightRelativeToSensor:
783  {
784  float q = (rel_z - me.colorScheme.z_min) * Az_1_color;
785  if (q < 0)
786  q = 0;
787  else if (q > 1)
788  q = 1;
789 
790  if (me.colorScheme.scheme ==
792  {
793  pR = pG = pB = q;
794  }
795  else
796  {
797  jet2rgb(q, pR, pG, pB);
798  }
799  }
800  break;
802  {
803  // In 2D scans we don't have this channel.
804  pR = pG = pB = 1.0;
805  }
806  break;
807  default:
808  THROW_EXCEPTION("Unknown color scheme");
809  }
810  }
811  /** Helper method fot the generic implementation of
812  * CPointsMap::loadFromRangeScan(), to be called after each
813  * "{x,y,z}.push_back(...);" */
815  CColouredPointsMap& me,
817  {
818  float& pR = lric.fVars[0];
819  float& pG = lric.fVars[1];
820  float& pB = lric.fVars[2];
821  me.m_color_R.push_back(pR);
822  me.m_color_G.push_back(pG);
823  me.m_color_B.push_back(pB);
824  // m_min_dist.push_back(1e4);
825  }
826 
827  /** Helper method fot the generic implementation of
828  * CPointsMap::loadFromRangeScan(), to be called only once before inserting
829  * points - this is the place to reserve memory in lric for extra working
830  * variables. */
832  CColouredPointsMap& me,
834  {
835  // Vars:
836  // [0] -> pR
837  // [1] -> pG
838  // [2] -> pB
839  // [3] -> Az_1_color
840  // [4] -> K_8u
841  // [5] -> cx
842  // [6] -> cy
843  // [7] -> fx
844  // [8] -> fy
845  lric.fVars.resize(9);
846  float& cx = lric.fVars[5];
847  float& cy = lric.fVars[6];
848  float& fx = lric.fVars[7];
849  float& fy = lric.fVars[8];
850 
851  // unsigned int vars:
852  // [0] -> imgW
853  // [1] -> imgH
854  // [2] -> img_idx_x
855  // [3] -> img_idx_y
856  lric.uVars.resize(4);
857  unsigned int& imgW = lric.uVars[0];
858  unsigned int& imgH = lric.uVars[1];
859  unsigned int& img_idx_x = lric.uVars[2];
860  unsigned int& img_idx_y = lric.uVars[3];
861 
862  // bool vars:
863  // [0] -> hasValidIntensityImage
864  // [1] -> hasColorIntensityImg
865  // [2] -> simple_3d_to_color_relation
866  lric.bVars.resize(3);
867  uint8_t& hasValidIntensityImage = lric.bVars[0];
868  uint8_t& hasColorIntensityImg = lric.bVars[1];
869  uint8_t& simple_3d_to_color_relation = lric.bVars[2];
870 
872  lric.fVars[3] = 1.0 / (me.colorScheme.z_max -
873  me.colorScheme.z_min); // Az_1_color = ...
874  lric.fVars[4] = 1.0f / 255; // K_8u
875 
876  hasValidIntensityImage = false;
877  imgW = 0;
878  imgH = 0;
879 
880  if (lric.rangeScan.hasIntensityImage)
881  {
882  // assure the size matches:
883  if (lric.rangeScan.points3D_x.size() ==
886  {
887  hasValidIntensityImage = true;
888  imgW = lric.rangeScan.intensityImage.getWidth();
889  imgH = lric.rangeScan.intensityImage.getHeight();
890  }
891  }
892 
893  hasColorIntensityImg =
894  hasValidIntensityImage && lric.rangeScan.intensityImage.isColor();
895 
896  // running indices for the image pixels for the gray levels:
897  // If both range & intensity images coincide (e.g. SwissRanger), then we
898  // can just
899  // assign 3D points to image pixels one-to-one, but that's not the case
900  // if
901  //
902  simple_3d_to_color_relation =
903  (std::abs(lric.rangeScan.relativePoseIntensityWRTDepth.norm()) <
904  1e-5);
905  img_idx_x = 0;
906  img_idx_y = 0;
907 
908  // Will be used just if simple_3d_to_color_relation=false
909  cx = lric.rangeScan.cameraParamsIntensity.cx();
910  cy = lric.rangeScan.cameraParamsIntensity.cy();
911  fx = lric.rangeScan.cameraParamsIntensity.fx();
912  fy = lric.rangeScan.cameraParamsIntensity.fy();
913  }
914 
915  /** Helper method fot the generic implementation of
916  * CPointsMap::loadFromRangeScan(), to be called once per range data */
918  CColouredPointsMap& me, const float gx, const float gy, const float gz,
920  {
921  MRPT_UNUSED_PARAM(gx);
922  MRPT_UNUSED_PARAM(gy);
923  // Rename variables:
924  float& pR = lric.fVars[0];
925  float& pG = lric.fVars[1];
926  float& pB = lric.fVars[2];
927  float& Az_1_color = lric.fVars[3];
928  float& K_8u = lric.fVars[4];
929  float& cx = lric.fVars[5];
930  float& cy = lric.fVars[6];
931  float& fx = lric.fVars[7];
932  float& fy = lric.fVars[8];
933 
934  unsigned int& imgW = lric.uVars[0];
935  unsigned int& imgH = lric.uVars[1];
936  unsigned int& img_idx_x = lric.uVars[2];
937  unsigned int& img_idx_y = lric.uVars[3];
938 
939  const uint8_t& hasValidIntensityImage = lric.bVars[0];
940  const uint8_t& hasColorIntensityImg = lric.bVars[1];
941  const uint8_t& simple_3d_to_color_relation = lric.bVars[2];
942 
943  // Relative height of the point wrt the sensor:
944  const float rel_z = gz - lric.HM.get_unsafe(2, 3); // m23;
945 
946  // Compute color:
947  switch (me.colorScheme.scheme)
948  {
949  // case cmFromHeightRelativeToSensor:
952  {
953  float q = (rel_z - me.colorScheme.z_min) * Az_1_color;
954  if (q < 0)
955  q = 0;
956  else if (q > 1)
957  q = 1;
958 
959  if (me.colorScheme.scheme ==
961  {
962  pR = pG = pB = q;
963  }
964  else
965  {
966  jet2rgb(q, pR, pG, pB);
967  }
968  }
969  break;
971  {
972  // Do we have to project the 3D point into the image plane??
973  bool hasValidColor = false;
974  if (simple_3d_to_color_relation)
975  {
976  hasValidColor = true;
977  }
978  else
979  {
980  // Do projection:
981  TPoint3D pt; // pt_wrt_colorcam;
984  lric.scan_x, lric.scan_y, lric.scan_z, pt.x, pt.y,
985  pt.z);
986 
987  // Project to image plane:
988  if (pt.z)
989  {
990  img_idx_x = cx + fx * pt.x / pt.z;
991  img_idx_y = cy + fy * pt.y / pt.z;
992 
993  hasValidColor = img_idx_x < imgW && // img_idx_x>=0
994  // isn't needed for
995  // unsigned.
996  img_idx_y < imgH;
997  }
998  }
999 
1000  if (hasValidColor && hasColorIntensityImg)
1001  {
1003  img_idx_x, img_idx_y, 0);
1004  pR = c[2] * K_8u;
1005  pG = c[1] * K_8u;
1006  pB = c[0] * K_8u;
1007  }
1008  else if (hasValidColor && hasValidIntensityImage)
1009  {
1011  img_idx_x, img_idx_y, 0);
1012  pR = pG = pB = c * K_8u;
1013  }
1014  else
1015  {
1016  pR = pG = pB = 1.0;
1017  }
1018  }
1019  break;
1020  default:
1021  THROW_EXCEPTION("Unknown color scheme");
1022  }
1023  }
1024 
1025  /** Helper method fot the generic implementation of
1026  * CPointsMap::loadFromRangeScan(), to be called after each
1027  * "{x,y,z}.push_back(...);" */
1029  CColouredPointsMap& me,
1031  {
1032  float& pR = lric.fVars[0];
1033  float& pG = lric.fVars[1];
1034  float& pB = lric.fVars[2];
1035 
1036  me.m_color_R.push_back(pR);
1037  me.m_color_G.push_back(pG);
1038  me.m_color_B.push_back(pB);
1039 
1040  // m_min_dist.push_back(1e4);
1041  }
1042 
1043  /** Helper method fot the generic implementation of
1044  * CPointsMap::loadFromRangeScan(), to be called once per range data, at the
1045  * end */
1047  CColouredPointsMap& me,
1049  {
1050  MRPT_UNUSED_PARAM(me);
1051  unsigned int& imgW = lric.uVars[0];
1052  unsigned int& img_idx_x = lric.uVars[2];
1053  unsigned int& img_idx_y = lric.uVars[3];
1054 
1055  const uint8_t& hasValidIntensityImage = lric.bVars[0];
1056  const uint8_t& simple_3d_to_color_relation = lric.bVars[2];
1057 
1058  // Advance the color pointer (just for simple cases, e.g. SwissRanger,
1059  // not for Kinect)
1060  if (simple_3d_to_color_relation && hasValidIntensityImage)
1061  {
1062  if (++img_idx_x >= imgW)
1063  {
1064  img_idx_y++;
1065  img_idx_x = 0;
1066  }
1067  }
1068  }
1069 };
1070 } // namespace detail
1071 } // namespace maps
1072 } // namespace mrpt
1073 
1074 /** See CPointsMap::loadFromRangeScan() */
1076  const CObservation2DRangeScan& rangeScan, const CPose3D* robotPose)
1077 {
1079  templ_loadFromRangeScan(*this, rangeScan, robotPose);
1080 }
1081 
1082 /** See CPointsMap::loadFromRangeScan() */
1084  const CObservation3DRangeScan& rangeScan, const CPose3D* robotPose)
1085 {
1087  templ_loadFromRangeScan(*this, rangeScan, robotPose);
1088 }
mrpt::math::TPoint3Df
Lightweight 3D point (float version).
Definition: lightweight_geom_data.h:315
n
GLenum GLsizei n
Definition: glext.h:5074
mrpt::img::TPixelCoordf
A pair (x,y) of pixel coordinates (subpixel resolution).
Definition: TPixelCoord.h:20
mrpt::config
Definition: config/CConfigFile.h:16
os.h
mrpt::maps::CPointsMap::TLaserRange3DInsertContext::fVars
std::vector< float > fVars
Extra variables to be used as desired by the derived class.
Definition: CPointsMap.h:108
aux_projectPoint_with_distortion
void aux_projectPoint_with_distortion(const mrpt::math::TPoint3D &P, const TCamera &params, TPixelCoordf &pixel, bool accept_points_behind)
Definition: CColouredPointsMap.cpp:475
mrpt::maps::CColouredPointsMap::TColourOptions::dumpToTextStream
void dumpToTextStream(std::ostream &out) const override
This method should clearly display all the contents of the structure in textual form,...
Definition: CColouredPointsMap.cpp:418
mrpt::maps::CColouredPointsMap::save3D_and_colour_to_text_file
bool save3D_and_colour_to_text_file(const std::string &file) const
Save to a text file.
Definition: CColouredPointsMap.cpp:599
mrpt::maps::CPointsMap::size
size_t size() const
Returns the number of stored points in the map.
Definition: CPointsMap.h:408
mrpt::img::CImage::getWidth
size_t getWidth() const override
Returns the width of the image in pixels.
Definition: CImage.cpp:864
mrpt::maps::CColouredPointsMap::PLY_import_set_vertex
virtual void PLY_import_set_vertex(const size_t idx, const mrpt::math::TPoint3Df &pt, const mrpt::img::TColorf *pt_color=nullptr) override
In a base class, will be called after PLY_import_set_vertex_count() once for each loaded point.
Definition: CColouredPointsMap.cpp:632
mrpt::system::os::fclose
int void fclose(FILE *f)
An OS-independent version of fclose.
Definition: os.cpp:273
mrpt::maps::CColouredPointsMap
A map of 2D/3D points with individual colours (RGB).
Definition: CColouredPointsMap.h:29
q
GLdouble GLdouble GLdouble GLdouble q
Definition: glext.h:3721
mrpt::maps::CColouredPointsMap::colorScheme
TColourOptions colorScheme
The options employed when inserting laser scans in the map.
Definition: CColouredPointsMap.h:254
G
const double G
Definition: vision_stereo_rectify/test.cpp:31
mrpt::maps::CColouredPointsMap::cmFromIntensityImage
@ cmFromIntensityImage
Definition: CColouredPointsMap.h:233
mrpt::img::TCamera::fx
double fx() const
Get the value of the focal length x-value (in pixels).
Definition: TCamera.h:165
mrpt::obs::CObservation3DRangeScan::cameraParamsIntensity
mrpt::img::TCamera cameraParamsIntensity
Projection parameters of the intensity (graylevel or RGB) camera.
Definition: CObservation3DRangeScan.h:721
mrpt::math::TPoint3Df::z
float z
Definition: lightweight_geom_data.h:323
MRPT_LOAD_CONFIG_VAR
#define MRPT_LOAD_CONFIG_VAR( variableName, variableType, configFileObject, sectionNameStr)
An useful macro for loading variables stored in a INI-like file under a key with the same name that t...
Definition: config/CConfigFileBase.h:282
mrpt::obs::CObservation2DRangeScan
A "CObservation"-derived class that represents a 2D range scan measurement (typically from a laser sc...
Definition: CObservation2DRangeScan.h:56
mrpt::maps::CColouredPointsMap::setPoint
virtual void setPoint(size_t index, float x, float y, float z, float R, float G, float B) override
Changes a given point from map.
Definition: CColouredPointsMap.cpp:330
mrpt::vector_strong_clear
void vector_strong_clear(VECTOR_T &v)
Like calling a std::vector<>'s clear() method, but really forcing deallocating the memory.
Definition: bits_mem.h:16
mrpt::maps::CColouredPointsMap::TColourOptions::z_min
float z_min
Definition: CColouredPointsMap.h:249
mrpt::maps::detail::pointmap_traits< CColouredPointsMap >::internal_loadFromRangeScan2D_prepareOneRange
static void internal_loadFromRangeScan2D_prepareOneRange(CColouredPointsMap &me, const float gx, const float gy, const float gz, mrpt::maps::CPointsMap::TLaserRange2DInsertContext &lric)
Helper method fot the generic implementation of CPointsMap::loadFromRangeScan(), to be called once pe...
Definition: CColouredPointsMap.cpp:762
mrpt::maps::CColouredPointsMap::TColourOptions::scheme
TColouringMethod scheme
Definition: CColouredPointsMap.h:248
c
const GLubyte * c
Definition: glext.h:6313
mrpt::maps::CColouredPointsMap::m_color_R
mrpt::aligned_std_vector< float > m_color_R
The color data.
Definition: CColouredPointsMap.h:313
mrpt::maps::detail::pointmap_traits< CColouredPointsMap >::internal_loadFromRangeScan3D_postPushBack
static void internal_loadFromRangeScan3D_postPushBack(CColouredPointsMap &me, mrpt::maps::CPointsMap::TLaserRange3DInsertContext &lric)
Helper method fot the generic implementation of CPointsMap::loadFromRangeScan(), to be called after e...
Definition: CColouredPointsMap.cpp:1028
mrpt::maps::CPointsMap::TLaserRange3DInsertContext
Helper struct used for internal_loadFromRangeScan3D_prepareOneRange()
Definition: CPointsMap.h:94
color_maps.h
mrpt::maps::detail::pointmap_traits< CColouredPointsMap >::internal_loadFromRangeScan3D_postOneRange
static void internal_loadFromRangeScan3D_postOneRange(CColouredPointsMap &me, mrpt::maps::CPointsMap::TLaserRange3DInsertContext &lric)
Helper method fot the generic implementation of CPointsMap::loadFromRangeScan(), to be called once pe...
Definition: CColouredPointsMap.cpp:1046
CPointCloudColoured.h
mrpt::math::TPoint3D::z
double z
Definition: lightweight_geom_data.h:385
MAP_DEFINITION_REGISTER
#define MAP_DEFINITION_REGISTER(_CLASSNAME_STRINGS, _CLASSNAME_WITH_NS)
Registers one map class into TMetricMapInitializer factory.
Definition: TMetricMapTypesRegistry.h:91
obj
GLsizei GLsizei GLuint * obj
Definition: glext.h:4070
mrpt::maps::CColouredPointsMap::TColourOptions::z_max
float z_max
Definition: CColouredPointsMap.h:249
mrpt::maps::CPointsMap::TLaserRange2DInsertContext
Helper struct used for internal_loadFromRangeScan2D_prepareOneRange()
Definition: CPointsMap.h:76
MRPT_UNUSED_PARAM
#define MRPT_UNUSED_PARAM(a)
Determines whether this is an X86 or AMD64 platform.
Definition: common.h:186
mrpt::maps::CColouredPointsMap::m_color_G
mrpt::aligned_std_vector< float > m_color_G
Definition: CColouredPointsMap.h:313
mrpt::img::TColorf::R
float R
Definition: TColor.h:94
mrpt::maps::CPointsMap
A cloud of points in 2D or 3D, which can be built from a sequence of laser scans or other sensors.
Definition: CPointsMap.h:64
CObservation3DRangeScan.h
mrpt::maps::CPointsMap::TLaserRange3DInsertContext::scan_z
float scan_z
Definition: CPointsMap.h:106
mrpt::poses::CPoseOrPoint::norm
double norm() const
Returns the euclidean norm of vector: .
Definition: CPoseOrPoint.h:253
mrpt
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
Definition: CKalmanFilterCapable.h:30
mrpt::maps::TMetricMapInitializer
Virtual base for specifying the kind and parameters of one map (normally, to be inserted into mrpt::m...
Definition: TMetricMapInitializer.h:34
uint8_t
unsigned char uint8_t
Definition: rptypes.h:41
mrpt::obs::CObservationImage::image
mrpt::img::CImage image
The image captured by the camera, that is, the main piece of information of this observation.
Definition: CObservationImage.h:61
R
const float R
Definition: CKinematicChain.cpp:138
THROW_EXCEPTION
#define THROW_EXCEPTION(msg)
Definition: exceptions.h:41
ASSERT_
#define ASSERT_(f)
Defines an assertion mechanism.
Definition: exceptions.h:113
p
GLfloat GLfloat p
Definition: glext.h:6305
mrpt::square
T square(const T x)
Inline function for the square of a number.
Definition: core/include/mrpt/core/bits_math.h:18
mrpt::poses
Classes for 2D/3D geometry representation, both of single values and probability density distribution...
Definition: CHierarchicalMapMHPartition.h:25
mrpt::opengl::CPointCloudColoured::Ptr
std::shared_ptr< CPointCloudColoured > Ptr
Definition: CPointCloudColoured.h:49
mrpt::img::CImage::isColor
bool isColor() const
Returns true if the image is RGB, false if it is grayscale.
Definition: CImage.cpp:906
mrpt::math::TPoint3Df::y
float y
Definition: lightweight_geom_data.h:322
mrpt::maps::detail::loadFromRangeImpl::templ_loadFromRangeScan
static void templ_loadFromRangeScan(Derived &obj, const mrpt::obs::CObservation2DRangeScan &rangeScan, const mrpt::poses::CPose3D *robotPose)
Definition: CPointsMap_crtp_common.h:25
mrpt::img::TCamera::cy
double cy() const
Get the value of the principal point y-coordinate (in pixels).
Definition: TCamera.h:163
mrpt::maps::CPointsMap::TLaserRange3DInsertContext::scan_y
float scan_y
Definition: CPointsMap.h:106
mrpt::obs
This namespace contains representation of robot actions and observations.
Definition: CParticleFilter.h:17
mrpt::serialization::CArchive
Virtual base class for "archives": classes abstracting I/O streams.
Definition: CArchive.h:48
bits_mem.h
source
GLsizei GLsizei GLchar * source
Definition: glext.h:4082
mrpt::img::jet2rgb
void jet2rgb(const float color_index, float &r, float &g, float &b)
Computes the RGB color components (range [0,1]) for the corresponding color index in the range [0,...
Definition: color_maps.cpp:138
mrpt::img::TCamera::fy
double fy() const
Get the value of the focal length y-value (in pixels).
Definition: TCamera.h:167
mrpt::obs::CObservation3DRangeScan::relativePoseIntensityWRTDepth
mrpt::poses::CPose3D relativePoseIntensityWRTDepth
Relative pose of the intensity camera wrt the depth camera (which is the coordinates origin for this ...
Definition: CObservation3DRangeScan.h:731
mrpt::maps::detail::pointmap_traits< CColouredPointsMap >::internal_loadFromRangeScan2D_init
static void internal_loadFromRangeScan2D_init(CColouredPointsMap &me, mrpt::maps::CPointsMap::TLaserRange2DInsertContext &lric)
Helper method fot the generic implementation of CPointsMap::loadFromRangeScan(), to be called only on...
Definition: CColouredPointsMap.cpp:745
mrpt::img::TColorf::B
float B
Definition: TColor.h:94
mrpt::maps::CMetricMap
Declares a virtual base class for all metric maps storage classes.
Definition: CMetricMap.h:56
aligned_serialization.h
mrpt::img
Definition: CCanvas.h:17
mrpt::maps::CColouredPointsMap::savePCDFile
virtual bool savePCDFile(const std::string &filename, bool save_as_binary) const override
Save the point cloud as a PCL PCD file, in either ASCII or binary format.
Definition: CColouredPointsMap.cpp:687
mrpt::obs::CObservation3DRangeScan::intensityImage
mrpt::img::CImage intensityImage
If hasIntensityImage=true, a color or gray-level intensity image of the same size than "rangeImage".
Definition: CObservation3DRangeScan.h:502
mrpt::poses::CPoseOrPoint::y
double y() const
Definition: CPoseOrPoint.h:144
mrpt::obs::CObservation3DRangeScan
Declares a class derived from "CObservation" that encapsules a 3D range scan measurement,...
Definition: CObservation3DRangeScan.h:224
mrpt::img::TCamera::cx
double cx() const
Get the value of the principal point x-coordinate (in pixels).
Definition: TCamera.h:161
mrpt::config::CConfigFileBase
This class allows loading and storing values and vectors of different types from a configuration text...
Definition: config/CConfigFileBase.h:44
mrpt::poses::CPoseOrPoint::x
double x() const
Common members of all points & poses classes.
Definition: CPoseOrPoint.h:140
mrpt::maps::CColouredPointsMap::TColourOptions::d_max
float d_max
Definition: CColouredPointsMap.h:250
mrpt::poses::CPose3D
A class used to store a 3D pose (a 3D translation + a rotation in 3D).
Definition: CPose3D.h:88
index
GLuint index
Definition: glext.h:4054
mrpt::maps::CColouredPointsMap::PLY_import_set_vertex_count
virtual void PLY_import_set_vertex_count(const size_t N) override
In a base class, reserve memory to prepare subsequent calls to PLY_import_set_vertex.
Definition: CColouredPointsMap.cpp:622
mrpt::math::TPoint3D::x
double x
X,Y,Z coordinates.
Definition: lightweight_geom_data.h:385
mrpt::maps::CPointsMap::TLaserRange3DInsertContext::HM
mrpt::math::CMatrixDouble44 HM
Homog matrix of the local sensor pose within the robot.
Definition: CPointsMap.h:102
mrpt::maps::CColouredPointsMap::getPoint
virtual void getPoint(size_t index, float &x, float &y, float &z, float &R, float &G, float &B) const override
Retrieves a point and its color (colors range is [0,1])
Definition: CColouredPointsMap.cpp:445
mrpt::obs::CObservation3DRangeScan::hasIntensityImage
bool hasIntensityImage
true means the field intensityImage contains valid data
Definition: CObservation3DRangeScan.h:499
mrpt::img::TColorf
A RGB color - floats in the range [0,1].
Definition: TColor.h:79
mrpt::obs::CObservation3DRangeScan::points3D_x
std::vector< float > points3D_x
If hasPoints3D=true, the (X,Y,Z) coordinates of the 3D point cloud detected by the camera.
Definition: CObservation3DRangeScan.h:399
mrpt::maps::CColouredPointsMap::setSize
virtual void setSize(size_t newLength) override
Resizes all point buffers so they can hold the given number of points, erasing all previous contents ...
Definition: CColouredPointsMap.cpp:105
mrpt::maps::CColouredPointsMap::cmFromHeightRelativeToSensorGray
@ cmFromHeightRelativeToSensorGray
Definition: CColouredPointsMap.h:232
mrpt::maps::CPointsMap::m_z
mrpt::aligned_std_vector< float > m_z
Definition: CPointsMap.h:1094
CPointsMap_crtp_common.h
mrpt::img::CImage::get_unsafe
unsigned char * get_unsafe(unsigned int col, unsigned int row, unsigned int channel=0) const
Access to pixels without checking boundaries - Use normally the () operator better,...
Definition: CImage.cpp:491
mrpt::img::TCamera
Structure to hold the parameters of a pinhole camera model.
Definition: TCamera.h:29
mrpt::maps::CPointsMap::m_y
mrpt::aligned_std_vector< float > m_y
Definition: CPointsMap.h:1094
mrpt::maps::CColouredPointsMap::cmFromHeightRelativeToSensorJet
@ cmFromHeightRelativeToSensorJet
Definition: CColouredPointsMap.h:231
mrpt::maps::CColouredPointsMap::TMapDefinition::colourOpts
mrpt::maps::CColouredPointsMap::TColourOptions colourOpts
Definition: CColouredPointsMap.h:347
mrpt::maps::CPointsMap::TLaserRange2DInsertContext::fVars
std::vector< float > fVars
Extra variables to be used as desired by the derived class.
Definition: CPointsMap.h:87
mrpt::opengl::CSetOfObjects::Ptr
std::shared_ptr< CSetOfObjects > Ptr
Definition: CSetOfObjects.h:30
mrpt::maps::detail::pointmap_traits
Definition: CPointsMap.h:39
IMPLEMENTS_SERIALIZABLE
#define IMPLEMENTS_SERIALIZABLE(class_name, base, NameSpace)
This must be inserted in all CSerializable classes implementation files.
Definition: CSerializable.h:114
mrpt::maps::CColouredPointsMap::PLY_export_get_vertex
void PLY_export_get_vertex(const size_t idx, mrpt::math::TPoint3Df &pt, bool &pt_has_color, mrpt::img::TColorf &pt_color) const override
In a base class, will be called after PLY_export_get_vertex_count() once for each exported point.
Definition: CColouredPointsMap.cpp:647
setSize
EIGEN_STRONG_INLINE void setSize(size_t row, size_t col)
Changes the size of matrix, maintaining its previous content as possible and padding with zeros where...
Definition: eigen_plugins.h:343
mrpt::maps::CColouredPointsMap::resetPointsMinDist
void resetPointsMinDist(float defValue=2000.0f)
Reset the minimum-observed-distance buffer for all the points to a predefined value.
Definition: CColouredPointsMap.cpp:593
mrpt::maps::CColouredPointsMap::TMapDefinition::insertionOpts
mrpt::maps::CPointsMap::TInsertionOptions insertionOpts
Definition: CColouredPointsMap.h:345
mrpt::maps::CPointsMap::TLaserRange2DInsertContext::HM
mrpt::math::CMatrixDouble44 HM
Homog matrix of the local sensor pose within the robot.
Definition: CPointsMap.h:84
mrpt::maps::detail::pointmap_traits< CColouredPointsMap >::internal_loadFromRangeScan2D_postPushBack
static void internal_loadFromRangeScan2D_postPushBack(CColouredPointsMap &me, mrpt::maps::CPointsMap::TLaserRange2DInsertContext &lric)
Helper method fot the generic implementation of CPointsMap::loadFromRangeScan(), to be called after e...
Definition: CColouredPointsMap.cpp:814
mrpt::math::TPoint3D
Lightweight 3D point.
Definition: lightweight_geom_data.h:378
mrpt::math::TPoint3D::y
double y
Definition: lightweight_geom_data.h:385
mrpt::system::os::fprintf
int fprintf(FILE *fil, const char *format,...) noexcept MRPT_printf_format_check(2
An OS-independent version of fprintf.
Definition: os.cpp:406
mrpt::maps::CColouredPointsMap::TColourOptions::loadFromConfigFile
void loadFromConfigFile(const mrpt::config::CConfigFileBase &source, const std::string &section) override
This method load the options from a ".ini"-like file or memory-stored string list.
Definition: CColouredPointsMap.cpp:409
mrpt::maps::CColouredPointsMap::TMapDefinition::likelihoodOpts
mrpt::maps::CPointsMap::TLikelihoodOptions likelihoodOpts
Definition: CColouredPointsMap.h:346
mrpt::img::TColorf::G
float G
Definition: TColor.h:94
mrpt::maps::CColouredPointsMap::m_color_B
mrpt::aligned_std_vector< float > m_color_B
Definition: CColouredPointsMap.h:313
mrpt::math::TPoint3Df::x
float x
Definition: lightweight_geom_data.h:321
mrpt::maps::CPointsMap::TLaserRange3DInsertContext::uVars
std::vector< unsigned int > uVars
Definition: CPointsMap.h:109
mrpt::maps::detail::pointmap_traits< CColouredPointsMap >::internal_loadFromRangeScan3D_init
static void internal_loadFromRangeScan3D_init(CColouredPointsMap &me, mrpt::maps::CPointsMap::TLaserRange3DInsertContext &lric)
Helper method fot the generic implementation of CPointsMap::loadFromRangeScan(), to be called only on...
Definition: CColouredPointsMap.cpp:831
mrpt::img::CImage::getHeight
size_t getHeight() const override
Returns the height of the image in pixels.
Definition: CImage.cpp:892
mrpt::maps::CColouredPointsMap::TMapDefinition
Definition: CColouredPointsMap.h:344
maps-precomp.h
mrpt::maps::CColouredPointsMap::loadFromRangeScan
virtual void loadFromRangeScan(const mrpt::obs::CObservation2DRangeScan &rangeScan, const mrpt::poses::CPose3D *robotPose=nullptr) override
See CPointsMap::loadFromRangeScan()
Definition: CColouredPointsMap.cpp:1075
mrpt::maps::CColouredPointsMap::addFrom_classSpecific
virtual void addFrom_classSpecific(const CPointsMap &anotherMap, const size_t nPreviousPoints) override
Auxiliary method called from within addFrom() automatically, to finish the copying of class-specific ...
Definition: CColouredPointsMap.cpp:665
ASSERT_NOT_EQUAL_
#define ASSERT_NOT_EQUAL_(__A, __B)
Definition: exceptions.h:159
mrpt::maps::CColouredPointsMap::colourFromObservation
bool colourFromObservation(const mrpt::obs::CObservationImage &obs, const mrpt::poses::CPose3D &robotPose)
Colour a set of points from a CObservationImage and the global pose of the robot.
Definition: CColouredPointsMap.cpp:504
mrpt::math
This base provides a set of functions for maths stuff.
Definition: math/include/mrpt/math/bits_math.h:13
mrpt::maps::CPointsMap::m_x
mrpt::aligned_std_vector< float > m_x
The point coordinates.
Definition: CPointsMap.h:1094
z
GLdouble GLdouble z
Definition: glext.h:3872
mrpt::img::TPixelCoordf::y
float y
Definition: TPixelCoord.h:25
in
GLuint in
Definition: glext.h:7274
mrpt::system::os::fopen
FILE * fopen(const char *fileName, const char *mode) noexcept
An OS-independent version of fopen.
Definition: os.cpp:255
CColouredPointsMap.h
string
GLsizei const GLchar ** string
Definition: glext.h:4101
mrpt::img::TPixelCoordf::x
float x
Definition: TPixelCoord.h:25
mrpt::poses::CPose3D::inverseComposePoint
void inverseComposePoint(const double gx, const double gy, const double gz, double &lx, double &ly, double &lz, mrpt::math::CMatrixFixedNumeric< double, 3, 3 > *out_jacobian_df_dpoint=nullptr, mrpt::math::CMatrixFixedNumeric< double, 3, 6 > *out_jacobian_df_dpose=nullptr, mrpt::math::CMatrixFixedNumeric< double, 3, 6 > *out_jacobian_df_dse3=nullptr) const
Computes the 3D point L such as .
Definition: CPose3D.cpp:649
mrpt::maps::CPointsMap::TLaserRange3DInsertContext::bVars
std::vector< uint8_t > bVars
Definition: CPointsMap.h:110
mrpt::maps
Definition: CBeacon.h:24
iterator
Scalar * iterator
Definition: eigen_plugins.h:26
mrpt::maps::CPointsMap::TLaserRange3DInsertContext::scan_x
float scan_x
In internal_loadFromRangeScan3D_prepareOneRange, these are the local coordinates of the scan points b...
Definition: CPointsMap.h:106
MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION
#define MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION(__V)
For use in CSerializable implementations.
Definition: exceptions.h:90
CSimplePointsMap.h
mrpt::maps::detail::pointmap_traits< CColouredPointsMap >::internal_loadFromRangeScan3D_prepareOneRange
static void internal_loadFromRangeScan3D_prepareOneRange(CColouredPointsMap &me, const float gx, const float gy, const float gz, mrpt::maps::CPointsMap::TLaserRange3DInsertContext &lric)
Helper method fot the generic implementation of CPointsMap::loadFromRangeScan(), to be called once pe...
Definition: CColouredPointsMap.cpp:917
mrpt::img::CImage::getChannelsOrder
const char * getChannelsOrder() const
Returns a string of the form "BGR","RGB" or "GRAY" indicating the channels ordering.
Definition: CImage.cpp:1180
mrpt::serialization::CArchive::WriteBufferFixEndianness
void WriteBufferFixEndianness(const T *ptr, size_t ElementCount)
Writes a sequence of elemental datatypes, taking care of reordering their bytes from the running arch...
Definition: CArchive.h:123
mrpt::obs::CObservationImage::getSensorPose
void getSensorPose(mrpt::poses::CPose3D &out_sensorPose) const override
A general method to retrieve the sensor pose on the robot.
Definition: CObservationImage.h:69
mrpt::maps::TMetricMapInitializer::loadFromConfigFile
void loadFromConfigFile(const mrpt::config::CConfigFileBase &source, const std::string &sectionNamePrefix) override
Load all params from a config file/source.
Definition: TMetricMapInitializer.cpp:38
mrpt::obs::CObservationImage
Declares a class derived from "CObservation" that encapsules an image from a camera,...
Definition: CObservationImage.h:35
y
GLenum GLint GLint y
Definition: glext.h:3538
uint32_t
unsigned __int32 uint32_t
Definition: rptypes.h:47
x
GLenum GLint x
Definition: glext.h:3538
mrpt::maps::CPointsMap::TLaserRange3DInsertContext::rangeScan
const mrpt::obs::CObservation3DRangeScan & rangeScan
Definition: CPointsMap.h:103
mrpt::system
This namespace provides a OS-independent interface to many useful functions: filenames manipulation,...
Definition: math_frwds.h:25
params
GLenum const GLfloat * params
Definition: glext.h:3534
mrpt::math::KDTreeCapable< CPointsMap >::kdTreeNClosestPoint2DIdx
void kdTreeNClosestPoint2DIdx(float x0, float y0, size_t knn, std::vector< size_t > &out_idx, std::vector< float > &out_dist_sqr) const
KD Tree-based search for the N closest point to some given 2D coordinates and returns their indexes.
Definition: KDTreeCapable.h:358
mrpt::obs::CObservationImage::cameraParams
mrpt::img::TCamera cameraParams
Intrinsic and distortion parameters of the camera.
Definition: CObservationImage.h:57
mrpt::maps::CColouredPointsMap::getPointColor
void getPointColor(size_t index, float &R, float &G, float &B) const
Retrieves a point color (colors range is [0,1])
Definition: CColouredPointsMap.cpp:462



Page generated by Doxygen 1.8.17 for MRPT 1.9.9 Git: ad3a9d8ae Tue May 1 23:10:22 2018 -0700 at miƩ 12 jul 2023 10:03:34 CEST