MRPT  1.9.9
CRangeScanOps_impl.h
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 #ifndef CRANGESCANOPS_IMPL_H
11 #define CRANGESCANOPS_IMPL_H
12 
14 {
15 template <class GRAPH_T>
19  const mrpt::poses::CPose2D* initial_pose_in /* = nullptr */,
20  mrpt::slam::CICP::TReturnInfo* icp_info /* = nullptr */)
21 {
22  MRPT_START;
23 
25  float running_time;
27 
28  // have them initialized prior - and then just clear them
29  m1.insertObservation(&from);
30  m2.insertObservation(&to);
31 
32  // If given, use initial_pose_in as a first guess for the ICP
33  mrpt::poses::CPose2D initial_pose;
34  if (initial_pose_in)
35  {
36  initial_pose = *initial_pose_in;
37  }
38 
40  params.icp.Align(&m1, &m2, initial_pose, &running_time, (void*)&info);
41 
42  // return the edge regardless of the goodness of the alignment
43  rel_edge->copyFrom(*pdf);
44 
45  // if given, fill the TReturnInfo Struct
46  if (icp_info) *icp_info = info;
47 
48  MRPT_END;
49 }
50 template <class GRAPH_T>
54  const mrpt::poses::CPose2D* initial_pose_in /* =nullptr */,
55  mrpt::slam::CICP::TReturnInfo* icp_info /* =nullptr */)
56 {
57  MRPT_START;
58 
60  from.hasRangeImage,
61  mrpt::format("Laser scan doesn't contain valid range image"));
63  to.hasRangeImage,
64  mrpt::format("Laser scan doesn't contain valid range image"));
65 
66  // TODO - have this as a class member
68  float running_time;
70 
71  m1.insertObservation(&from);
72  m2.insertObservation(&to);
73 
74  // this->decimatePointsMap(&m1, [> keep every = */ 40, /* low_lim = <]
75  // 5000);
76  // this->decimatePointsMap(&m2, [> keep every = */ 40, /* low_lim = <]
77  // 5000);
78 
79  // If given, use initial_pose_in as a first guess for the ICP
80  mrpt::poses::CPose3D initial_pose;
81  if (initial_pose_in)
82  {
83  initial_pose = mrpt::poses::CPose3D(*initial_pose_in);
84  }
85 
87  params.icp.Align3D(&m1, &m2, initial_pose, &running_time, (void*)&info);
88 
89  // return the edge regardless of the goodness of the alignment
90  // copy from the 3D PDF
91  // NULLIFY contraint_t if Z displacement is high (normally this should be 0)
92  // since we are moving in 2D
93  if (fabs(pdf->getMeanVal().z()) < 0.1)
94  {
95  rel_edge->copyFrom(*pdf);
96  }
97  else
98  {
99  rel_edge = nullptr;
100  }
101 
102  // if given, fill the TReturnInfo Struct
103  if (icp_info) *icp_info = info;
104 
105  MRPT_END;
106 }
107 
108 template <class GRAPH_T>
110  mrpt::maps::CPointsMap* m, size_t keep_point_every, /* = 4 */
111  size_t low_lim /* = 8000 */)
112 {
113  MRPT_START;
114 
115  size_t map_size = m->size();
116 
117  if (low_lim)
118  {
119  // check if current keep_point_every variable is too large
120  size_t conservative_keep_point_every = map_size / low_lim;
121  keep_point_every =
122  std::min(keep_point_every, conservative_keep_point_every);
123  }
124 
125  // insert a false every "keep_point_every" points
126  std::vector<bool> deletion_mask(map_size, true);
127  for (size_t i = 0; i != map_size; ++i)
128  {
129  if (i % keep_point_every == 0)
130  {
131  deletion_mask[i] = false;
132  }
133  }
134  m->applyDeletionMask(deletion_mask);
135 
136  // std::cout << "Map size: " << map_size << " => " << m->size() <<
137  // std::endl;
138 
139  MRPT_END;
140 }
141 
142 template <class GRAPH_T>
145  mrpt::obs::CObservation2DRangeScan::Ptr* scan2D_out /*= NULL*/)
146 {
147  MRPT_START;
148 
149  bool success = false;
150  // if it doesn't exist, create it
151  if (!*scan2D_out)
152  {
153  *scan2D_out =
154  mrpt::make_aligned_shared<mrpt::obs::CObservation2DRangeScan>();
155  }
156 
157  if (scan3D_in->hasRangeImage)
158  {
159  scan3D_in->convertTo2DScan(**scan2D_out, params.conversion_params);
160  success = true;
161  }
162  else
163  {
164  std::cout << "No valid rangeImage found" << std::endl;
165  success = false;
166  }
167 
168  return success;
169  MRPT_END;
170 }
171 
172 // TParameter
173 // //////////////////////////////////
174 
175 template <class GRAPH_T>
177 {
178 }
179 
180 template <class GRAPH_T>
182 {
183 }
184 
185 template <class GRAPH_T>
187 {
188  MRPT_START;
189 
190  out << mrpt::format(
191  "3D=>2D LaserScan Conversion Sensor label = %s\n",
192  conversion_params.sensorLabel.c_str());
193  out << mrpt::format(
194  "3D=>2D LaserScan Conversion angle sup = %.2f deg\n",
195  mrpt::RAD2DEG(conversion_params.angle_sup));
196  out << mrpt::format(
197  "3D=>2D LaserScan Conversion angle inf = %.2f deg\n",
198  mrpt::RAD2DEG(conversion_params.angle_inf));
199  out << mrpt::format(
200  "3D=>2D LaserScan Conversion oversampling ratio = %.2f\n",
201  conversion_params.oversampling_ratio);
202  out << mrpt::format(
203  "3D=>2D LaserScan Conversion Z minimum = %.2f\n",
204  conversion_params.z_min);
205 
206  icp.options.dumpToTextStream(out);
207 
208  MRPT_END;
209 }
210 template <class GRAPH_T>
212  const mrpt::config::CConfigFileBase& source, const std::string& section)
213 {
214  MRPT_START;
215 
216  conversion_params.sensorLabel = source.read_string(
217  section, "conversion_sensor_label", "KINECT_TO_2D_SCAN", false);
218  conversion_params.angle_sup = mrpt::DEG2RAD(
219  source.read_double(section, "conversion_angle_sup", 10, false));
220  conversion_params.angle_inf = mrpt::DEG2RAD(
221  source.read_double(section, "conversion_angle_inf", 10, false));
222  conversion_params.oversampling_ratio = source.read_double(
223  section, "conversion_oversampling_ratio", 1.1, false);
224  conversion_params.z_min = source.read_double(
225  section, "conversion_z_min", 0, false); // TODO - is this accurate?
226 
227  // load the icp parameters - from "ICP" section explicitly
228  icp.options.loadFromConfigFile(source, "ICP");
229 
230  has_read_config = true;
231 
232  MRPT_END;
233 }
234 } // end of namespaces
235 
236 #endif /* end of include guard: CRANGESCANOPS_IMPL_H */
237 
238 
#define MRPT_START
Definition: exceptions.h:262
#define min(a, b)
double RAD2DEG(const double x)
Radians to degrees.
void dumpToTextStream(std::ostream &out) const
This method should clearly display all the contents of the structure in textual form, sending it to a std::ostream.
double DEG2RAD(const double x)
Degrees to radians.
void getICPEdge(const mrpt::obs::CObservation2DRangeScan &from, const mrpt::obs::CObservation2DRangeScan &to, constraint_t *rel_edge, const mrpt::poses::CPose2D *initial_pose=nullptr, mrpt::slam::CICP::TReturnInfo *icp_info=nullptr)
Align the 2D range scans provided and fill the potential edge that can transform the one into the oth...
void loadFromConfigFile(const mrpt::config::CConfigFileBase &source, const std::string &section)
This method load the options from a ".ini"-like file or memory-stored string list.
Declares a class derived from "CObservation" that encapsules a 3D range scan measurement, as from a time-of-flight range camera or any other RGBD sensor.
void decimatePointsMap(mrpt::maps::CPointsMap *m, size_t keep_point_every=4, size_t low_lim=0)
Reduce the size of the given CPointsMap by keeping one out of "keep_point_every" points.
A cloud of points in 2D or 3D, which can be built from a sequence of laser scans. ...
typename GRAPH_T::constraint_t constraint_t
Handy typedefs.
Definition: CRangeScanOps.h:76
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
This class allows loading and storing values and vectors of different types from a configuration text...
bool hasRangeImage
true means the field rangeImage contains valid data
GLsizei const GLchar ** string
Definition: glext.h:4101
#define ASSERTDEBMSG_(f, __ERROR_MSG)
Definition: exceptions.h:208
A "CObservation"-derived class that represents a 2D range scan measurement (typically from a laser sc...
A class used to store a 2D pose, including the 2D coordinate point and a heading (phi) angle...
Definition: CPose2D.h:38
A class used to store a 3D pose (a 3D translation + a rotation in 3D).
Definition: CPose3D.h:86
bool convert3DTo2DRangeScan(mrpt::obs::CObservation3DRangeScan::Ptr &scan3D_in, mrpt::obs::CObservation2DRangeScan::Ptr *scan2D_out=nullptr)
Wrapper around the CObservation3DRangeScan::convertTo2DScan corresponding method. ...
std::string format(const char *fmt,...) MRPT_printf_format_check(1
A std::string version of C sprintf.
Definition: format.cpp:16
#define MRPT_END
Definition: exceptions.h:266
The ICP algorithm return information.
Definition: CICP.h:190
GLsizei GLsizei GLchar * source
Definition: glext.h:4082
size_t size() const
Returns the number of stored points in the map.
Definition: CPointsMap.h:408
GLenum const GLfloat * params
Definition: glext.h:3534
bool insertObservation(const mrpt::obs::CObservation *obs, const mrpt::poses::CPose3D *robotPose=NULL)
Insert the observation information into this map.
Definition: CMetricMap.cpp:95
void applyDeletionMask(const std::vector< bool > &mask)
Remove from the map the points marked in a bool&#39;s array as "true".



Page generated by Doxygen 1.8.14 for MRPT 1.9.9 Git: 7d5e6d718 Fri Aug 24 01:51:28 2018 +0200 at lun nov 2 08:35:50 CET 2020