Point Cloud Library (PCL)  1.11.1-dev
io.h
1 /*
2  * Software License Agreement (BSD License)
3  *
4  * Point Cloud Library (PCL) - www.pointclouds.org
5  * Copyright (c) 2010-2011, Willow Garage, Inc.
6  * Copyright (c) 2012-, Open Perception, Inc.
7  *
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  *
14  * * Redistributions of source code must retain the above copyright
15  * notice, this list of conditions and the following disclaimer.
16  * * Redistributions in binary form must reproduce the above
17  * copyright notice, this list of conditions and the following
18  * disclaimer in the documentation and/or other materials provided
19  * with the distribution.
20  * * Neither the name of the copyright holder(s) nor the names of its
21  * contributors may be used to endorse or promote products derived
22  * from this software without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
27  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
28  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
29  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
30  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
31  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
32  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
34  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35  * POSSIBILITY OF SUCH DAMAGE.
36  *
37  * $Id$
38  *
39  */
40 
41 #pragma once
42 
43 #include <numeric>
44 #include <string>
45 
46 #include <pcl/point_cloud.h>
47 #include <pcl/PointIndices.h>
48 #include <pcl/pcl_macros.h>
49 #include <pcl/PolygonMesh.h>
50 #include <locale>
51 
52 namespace pcl
53 {
54  /** \brief Get the index of a specified field (i.e., dimension/channel)
55  * \param[in] cloud the point cloud message
56  * \param[in] field_name the string defining the field name
57  * \ingroup common
58  */
59  inline int
60  getFieldIndex (const pcl::PCLPointCloud2 &cloud, const std::string &field_name)
61  {
62  // Get the index we need
63  const auto result = std::find_if(cloud.fields.begin (), cloud.fields.end (),
64  [&field_name](const auto field) { return field.name == field_name; });
65  if (result == cloud.fields.end ())
66  return -1;
67  return std::distance(cloud.fields.begin (), result);
68  }
69 
70  /** \brief Get the index of a specified field (i.e., dimension/channel)
71  * \tparam PointT datatype for which fields is being queries
72  * \param[in] field_name the string defining the field name
73  * \param[out] fields a vector to the original \a PCLPointField vector that the raw PointCloud message contains
74  * \ingroup common
75  */
76  template <typename PointT> inline int
77  getFieldIndex (const std::string &field_name,
78  std::vector<pcl::PCLPointField> &fields);
79  /** \brief Get the index of a specified field (i.e., dimension/channel)
80  * \tparam PointT datatype for which fields is being queries
81  * \param[in] field_name the string defining the field name
82  * \param[in] fields a vector to the original \a PCLPointField vector that the raw PointCloud message contains
83  * \ingroup common
84  */
85  template <typename PointT> inline int
86  getFieldIndex (const std::string &field_name,
87  const std::vector<pcl::PCLPointField> &fields);
88 
89  /** \brief Get the list of available fields (i.e., dimension/channel)
90  * \tparam PointT datatype whose details are requested
91  * \ingroup common
92  */
93  template <typename PointT> inline std::vector<pcl::PCLPointField>
94  getFields ();
95 
96  /** \brief Get the list of all fields available in a given cloud
97  * \param[in] cloud the point cloud message
98  * \ingroup common
99  */
100  template <typename PointT> inline std::string
101  getFieldsList (const pcl::PointCloud<PointT> &cloud);
102 
103  /** \brief Get the available point cloud fields as a space separated string
104  * \param[in] cloud a pointer to the PointCloud message
105  * \ingroup common
106  */
107  inline std::string
109  {
110  return std::accumulate(std::next (cloud.fields.begin ()), cloud.fields.end (), cloud.fields[0].name,
111  [](const auto& acc, const auto& field) { return acc + " " + field.name; });
112  }
113 
114  /** \brief Obtains the size of a specific field data type in bytes
115  * \param[in] datatype the field data type (see PCLPointField.h)
116  * \ingroup common
117  */
118  inline int
119  getFieldSize (const int datatype)
120  {
121  switch (datatype)
122  {
125  return (1);
126 
129  return (2);
130 
134  return (4);
135 
137  return (8);
138 
139  default:
140  return (0);
141  }
142  }
143 
144  /** \brief Obtain a vector with the sizes of all valid fields (e.g., not "_")
145  * \param[in] fields the input vector containing the fields
146  * \param[out] field_sizes the resultant field sizes in bytes
147  */
148  PCL_EXPORTS void
149  getFieldsSizes (const std::vector<pcl::PCLPointField> &fields,
150  std::vector<int> &field_sizes);
151 
152  /** \brief Obtains the type of the PCLPointField from a specific size and type
153  * \param[in] size the size in bytes of the data field
154  * \param[in] type a char describing the type of the field ('F' = float, 'I' = signed, 'U' = unsigned)
155  * \ingroup common
156  */
157  inline int
158  getFieldType (const int size, char type)
159  {
160  type = std::toupper (type, std::locale::classic ());
161  switch (size)
162  {
163  case 1:
164  if (type == 'I')
165  return (pcl::PCLPointField::INT8);
166  if (type == 'U')
167  return (pcl::PCLPointField::UINT8);
168  break;
169 
170  case 2:
171  if (type == 'I')
172  return (pcl::PCLPointField::INT16);
173  if (type == 'U')
175  break;
176 
177  case 4:
178  if (type == 'I')
179  return (pcl::PCLPointField::INT32);
180  if (type == 'U')
182  if (type == 'F')
184  break;
185 
186  case 8:
187  if (type == 'F')
189  break;
190  }
191  return (-1);
192  }
193 
194  /** \brief Obtains the type of the PCLPointField from a specific PCLPointField as a char
195  * \param[in] type the PCLPointField field type
196  * \ingroup common
197  */
198  inline char
199  getFieldType (const int type)
200  {
201  switch (type)
202  {
206  return ('I');
207 
211  return ('U');
212 
215  return ('F');
216  default:
217  return ('?');
218  }
219  }
220 
222  {
227  };
228 
229  /** \brief \return the right index according to the interpolation type.
230  * \note this is adapted from OpenCV
231  * \param p the index of point to interpolate
232  * \param length the top/bottom row or left/right column index
233  * \param type the requested interpolation
234  * \throws pcl::BadArgumentException if type is unknown
235  */
236  PCL_EXPORTS int
237  interpolatePointIndex (int p, int length, InterpolationType type);
238 
239  /** \brief Concatenate two pcl::PointCloud<PointT>
240  * \param[in] cloud1 the first input point cloud dataset
241  * \param[in] cloud2 the second input point cloud dataset
242  * \param[out] cloud_out the resultant output point cloud dataset
243  * \return true if successful, false otherwise
244  * \ingroup common
245  */
246  template <typename PointT>
247  PCL_EXPORTS bool
249  const pcl::PointCloud<PointT> &cloud2,
250  pcl::PointCloud<PointT> &cloud_out)
251  {
252  return pcl::PointCloud<PointT>::concatenate(cloud1, cloud2, cloud_out);
253  }
254 
255  /** \brief Concatenate two pcl::PCLPointCloud2
256  *
257  * \warning This function subtly differs from the deprecated concatenatePointCloud()
258  * The difference is that this function will concatenate IFF the non-skip fields
259  * are in the correct order and same in number. The deprecated function skipped
260  * fields even if both clouds didn't agree on the number of output fields
261  * \param[in] cloud1 the first input point cloud dataset
262  * \param[in] cloud2 the second input point cloud dataset
263  * \param[out] cloud_out the resultant output point cloud dataset
264  * \return true if successful, false otherwise
265  * \ingroup common
266  */
267  PCL_EXPORTS inline bool
269  const pcl::PCLPointCloud2 &cloud2,
270  pcl::PCLPointCloud2 &cloud_out)
271  {
272  return pcl::PCLPointCloud2::concatenate(cloud1, cloud2, cloud_out);
273  }
274 
275  /** \brief Concatenate two pcl::PolygonMesh
276  * \param[in] mesh1 the first input mesh
277  * \param[in] mesh2 the second input mesh
278  * \param[out] mesh_out the resultant output mesh
279  * \return true if successful, false otherwise
280  * \ingroup common
281  */
282  PCL_EXPORTS inline bool
284  const pcl::PolygonMesh &mesh2,
285  pcl::PolygonMesh &mesh_out)
286  {
287  return pcl::PolygonMesh::concatenate(mesh1, mesh2, mesh_out);
288  }
289 
290  /** \brief Concatenate two pcl::PCLPointCloud2
291  * \param[in] cloud1 the first input point cloud dataset
292  * \param[in] cloud2 the second input point cloud dataset
293  * \param[out] cloud_out the resultant output point cloud dataset
294  * \return true if successful, false otherwise (e.g., name/number of fields differs)
295  * \ingroup common
296  */
297  PCL_DEPRECATED(1, 12, "use pcl::concatenate() instead, but beware of subtle difference in behavior (see documentation)")
298  PCL_EXPORTS bool
299  concatenatePointCloud (const pcl::PCLPointCloud2 &cloud1,
300  const pcl::PCLPointCloud2 &cloud2,
301  pcl::PCLPointCloud2 &cloud_out);
302 
303  /** \brief Extract the indices of a given point cloud as a new point cloud
304  * \param[in] cloud_in the input point cloud dataset
305  * \param[in] indices the vector of indices representing the points to be copied from \a cloud_in
306  * \param[out] cloud_out the resultant output point cloud dataset
307  * \note Assumes unique indices.
308  * \ingroup common
309  */
310  PCL_EXPORTS void
311  copyPointCloud (const pcl::PCLPointCloud2 &cloud_in,
312  const Indices &indices,
313  pcl::PCLPointCloud2 &cloud_out);
314 
315  /** \brief Extract the indices of a given point cloud as a new point cloud
316  * \param[in] cloud_in the input point cloud dataset
317  * \param[in] indices the vector of indices representing the points to be copied from \a cloud_in
318  * \param[out] cloud_out the resultant output point cloud dataset
319  * \note Assumes unique indices.
320  * \ingroup common
321  */
322  PCL_EXPORTS void
323  copyPointCloud (const pcl::PCLPointCloud2 &cloud_in,
324  const IndicesAllocator< Eigen::aligned_allocator<int> > &indices,
325  pcl::PCLPointCloud2 &cloud_out);
326 
327  /** \brief Copy fields and point cloud data from \a cloud_in to \a cloud_out
328  * \param[in] cloud_in the input point cloud dataset
329  * \param[out] cloud_out the resultant output point cloud dataset
330  * \ingroup common
331  */
332  PCL_EXPORTS void
333  copyPointCloud (const pcl::PCLPointCloud2 &cloud_in,
334  pcl::PCLPointCloud2 &cloud_out);
335 
336  /** \brief Check if two given point types are the same or not. */
337  template <typename Point1T, typename Point2T> inline bool
339  {
340  return (typeid (Point1T) == typeid (Point2T));
341  }
342 
343  /** \brief Extract the indices of a given point cloud as a new point cloud
344  * \param[in] cloud_in the input point cloud dataset
345  * \param[in] indices the vector of indices representing the points to be copied from \a cloud_in
346  * \param[out] cloud_out the resultant output point cloud dataset
347  * \note Assumes unique indices.
348  * \ingroup common
349  */
350  template <typename PointT, typename IndicesVectorAllocator = std::allocator<int>> void
351  copyPointCloud (const pcl::PointCloud<PointT> &cloud_in,
352  const IndicesAllocator< IndicesVectorAllocator> &indices,
353  pcl::PointCloud<PointT> &cloud_out);
354 
355  /** \brief Extract the indices of a given point cloud as a new point cloud
356  * \param[in] cloud_in the input point cloud dataset
357  * \param[in] indices the PointIndices structure representing the points to be copied from cloud_in
358  * \param[out] cloud_out the resultant output point cloud dataset
359  * \note Assumes unique indices.
360  * \ingroup common
361  */
362  template <typename PointT> void
363  copyPointCloud (const pcl::PointCloud<PointT> &cloud_in,
364  const PointIndices &indices,
365  pcl::PointCloud<PointT> &cloud_out);
366 
367  /** \brief Extract the indices of a given point cloud as a new point cloud
368  * \param[in] cloud_in the input point cloud dataset
369  * \param[in] indices the vector of indices representing the points to be copied from \a cloud_in
370  * \param[out] cloud_out the resultant output point cloud dataset
371  * \note Assumes unique indices.
372  * \ingroup common
373  */
374  template <typename PointT> void
375  copyPointCloud (const pcl::PointCloud<PointT> &cloud_in,
376  const std::vector<pcl::PointIndices> &indices,
377  pcl::PointCloud<PointT> &cloud_out);
378 
379  /** \brief Copy all the fields from a given point cloud into a new point cloud
380  * \param[in] cloud_in the input point cloud dataset
381  * \param[out] cloud_out the resultant output point cloud dataset
382  * \ingroup common
383  */
384  template <typename PointInT, typename PointOutT> void
385  copyPointCloud (const pcl::PointCloud<PointInT> &cloud_in,
386  pcl::PointCloud<PointOutT> &cloud_out);
387 
388  /** \brief Extract the indices of a given point cloud as a new point cloud
389  * \param[in] cloud_in the input point cloud dataset
390  * \param[in] indices the vector of indices representing the points to be copied from \a cloud_in
391  * \param[out] cloud_out the resultant output point cloud dataset
392  * \note Assumes unique indices.
393  * \ingroup common
394  */
395  template <typename PointInT, typename PointOutT, typename IndicesVectorAllocator = std::allocator<int>> void
396  copyPointCloud (const pcl::PointCloud<PointInT> &cloud_in,
397  const IndicesAllocator<IndicesVectorAllocator> &indices,
398  pcl::PointCloud<PointOutT> &cloud_out);
399 
400  /** \brief Extract the indices of a given point cloud as a new point cloud
401  * \param[in] cloud_in the input point cloud dataset
402  * \param[in] indices the PointIndices structure representing the points to be copied from cloud_in
403  * \param[out] cloud_out the resultant output point cloud dataset
404  * \note Assumes unique indices.
405  * \ingroup common
406  */
407  template <typename PointInT, typename PointOutT> void
408  copyPointCloud (const pcl::PointCloud<PointInT> &cloud_in,
409  const PointIndices &indices,
410  pcl::PointCloud<PointOutT> &cloud_out);
411 
412  /** \brief Extract the indices of a given point cloud as a new point cloud
413  * \param[in] cloud_in the input point cloud dataset
414  * \param[in] indices the vector of indices representing the points to be copied from cloud_in
415  * \param[out] cloud_out the resultant output point cloud dataset
416  * \note Assumes unique indices.
417  * \ingroup common
418  */
419  template <typename PointInT, typename PointOutT> void
420  copyPointCloud (const pcl::PointCloud<PointInT> &cloud_in,
421  const std::vector<pcl::PointIndices> &indices,
422  pcl::PointCloud<PointOutT> &cloud_out);
423 
424  /** \brief Copy a point cloud inside a larger one interpolating borders.
425  * \param[in] cloud_in the input point cloud dataset
426  * \param[out] cloud_out the resultant output point cloud dataset
427  * \param top
428  * \param bottom
429  * \param left
430  * \param right
431  * Position of cloud_in inside cloud_out is given by \a top, \a left, \a bottom \a right.
432  * \param[in] border_type the interpolating method (pcl::BORDER_XXX)
433  * BORDER_REPLICATE: aaaaaa|abcdefgh|hhhhhhh
434  * BORDER_REFLECT: fedcba|abcdefgh|hgfedcb
435  * BORDER_REFLECT_101: gfedcb|abcdefgh|gfedcba
436  * BORDER_WRAP: cdefgh|abcdefgh|abcdefg
437  * BORDER_CONSTANT: iiiiii|abcdefgh|iiiiiii with some specified 'i'
438  * BORDER_TRANSPARENT: mnopqr|abcdefgh|tuvwxyz where m-r and t-z are original values of cloud_out
439  * \param value
440  * \throw pcl::BadArgumentException if any of top, bottom, left or right is negative.
441  * \ingroup common
442  */
443  template <typename PointT> void
444  copyPointCloud (const pcl::PointCloud<PointT> &cloud_in,
445  pcl::PointCloud<PointT> &cloud_out,
446  int top, int bottom, int left, int right,
447  pcl::InterpolationType border_type, const PointT& value);
448 
449  /** \brief Concatenate two datasets representing different fields.
450  *
451  * \note If the input datasets have overlapping fields (i.e., both contain
452  * the same fields), then the data in the second cloud (cloud2_in) will
453  * overwrite the data in the first (cloud1_in).
454  *
455  * \param[in] cloud1_in the first input dataset
456  * \param[in] cloud2_in the second input dataset (overwrites the fields of the first dataset for those that are shared)
457  * \param[out] cloud_out the resultant output dataset created by the concatenation of all the fields in the input datasets
458  * \ingroup common
459  */
460  template <typename PointIn1T, typename PointIn2T, typename PointOutT> void
462  const pcl::PointCloud<PointIn2T> &cloud2_in,
463  pcl::PointCloud<PointOutT> &cloud_out);
464 
465  /** \brief Concatenate two datasets representing different fields.
466  *
467  * \note If the input datasets have overlapping fields (i.e., both contain
468  * the same fields), then the data in the second cloud (cloud2_in) will
469  * overwrite the data in the first (cloud1_in).
470  *
471  * \param[in] cloud1_in the first input dataset
472  * \param[in] cloud2_in the second input dataset (overwrites the fields of the first dataset for those that are shared)
473  * \param[out] cloud_out the output dataset created by concatenating all the fields in the input datasets
474  * \ingroup common
475  */
476  PCL_EXPORTS bool
477  concatenateFields (const pcl::PCLPointCloud2 &cloud1_in,
478  const pcl::PCLPointCloud2 &cloud2_in,
479  pcl::PCLPointCloud2 &cloud_out);
480 
481  /** \brief Copy the XYZ dimensions of a pcl::PCLPointCloud2 into Eigen format
482  * \param[in] in the point cloud message
483  * \param[out] out the resultant Eigen MatrixXf format containing XYZ0 / point
484  * \ingroup common
485  */
486  PCL_EXPORTS bool
487  getPointCloudAsEigen (const pcl::PCLPointCloud2 &in, Eigen::MatrixXf &out);
488 
489  /** \brief Copy the XYZ dimensions from an Eigen MatrixXf into a pcl::PCLPointCloud2 message
490  * \param[in] in the Eigen MatrixXf format containing XYZ0 / point
491  * \param[out] out the resultant point cloud message
492  * \note the method assumes that the PCLPointCloud2 message already has the fields set up properly !
493  * \ingroup common
494  */
495  PCL_EXPORTS bool
496  getEigenAsPointCloud (Eigen::MatrixXf &in, pcl::PCLPointCloud2 &out);
497 
498  namespace io
499  {
500  /** \brief swap bytes order of a char array of length N
501  * \param bytes char array to swap
502  * \ingroup common
503  */
504  template <std::size_t N> void
505  swapByte (char* bytes);
506 
507  /** \brief specialization of swapByte for dimension 1
508  * \param bytes char array to swap
509  */
510  template <> inline void
511  swapByte<1> (char* bytes) { bytes[0] = bytes[0]; }
512 
513 
514  /** \brief specialization of swapByte for dimension 2
515  * \param bytes char array to swap
516  */
517  template <> inline void
518  swapByte<2> (char* bytes) { std::swap (bytes[0], bytes[1]); }
519 
520  /** \brief specialization of swapByte for dimension 4
521  * \param bytes char array to swap
522  */
523  template <> inline void
524  swapByte<4> (char* bytes)
525  {
526  std::swap (bytes[0], bytes[3]);
527  std::swap (bytes[1], bytes[2]);
528  }
529 
530  /** \brief specialization of swapByte for dimension 8
531  * \param bytes char array to swap
532  */
533  template <> inline void
534  swapByte<8> (char* bytes)
535  {
536  std::swap (bytes[0], bytes[7]);
537  std::swap (bytes[1], bytes[6]);
538  std::swap (bytes[2], bytes[5]);
539  std::swap (bytes[3], bytes[4]);
540  }
541 
542  /** \brief swaps byte of an arbitrary type T casting it to char*
543  * \param value the data you want its bytes swapped
544  */
545  template <typename T> void
546  swapByte (T& value)
547  {
548  pcl::io::swapByte<sizeof(T)> (reinterpret_cast<char*> (&value));
549  }
550  }
551 }
552 
553 #include <pcl/common/impl/io.hpp>
pcl::getPointCloudAsEigen
PCL_EXPORTS bool getPointCloudAsEigen(const pcl::PCLPointCloud2 &in, Eigen::MatrixXf &out)
Copy the XYZ dimensions of a pcl::PCLPointCloud2 into Eigen format.
pcl::concatenateFields
void concatenateFields(const pcl::PointCloud< PointIn1T > &cloud1_in, const pcl::PointCloud< PointIn2T > &cloud2_in, pcl::PointCloud< PointOutT > &cloud_out)
Concatenate two datasets representing different fields.
Definition: io.hpp:309
pcl_macros.h
Defines all the PCL and non-PCL macros used.
pcl
Definition: convolution.h:46
pcl::concatenatePointCloud
PCL_EXPORTS bool concatenatePointCloud(const pcl::PCLPointCloud2 &cloud1, const pcl::PCLPointCloud2 &cloud2, pcl::PCLPointCloud2 &cloud_out)
Concatenate two pcl::PCLPointCloud2.
Eigen
Definition: bfgs.h:10
pcl::geometry::distance
float distance(const PointT &p1, const PointT &p2)
Definition: geometry.h:60
pcl::isSamePointType
bool isSamePointType()
Check if two given point types are the same or not.
Definition: io.h:338
pcl::io::swapByte< 4 >
void swapByte< 4 >(char *bytes)
specialization of swapByte for dimension 4
Definition: io.h:524
pcl::io::swapByte< 2 >
void swapByte< 2 >(char *bytes)
specialization of swapByte for dimension 2
Definition: io.h:518
pcl::BORDER_CONSTANT
@ BORDER_CONSTANT
Definition: io.h:223
pcl::PCLPointField::INT8
@ INT8
Definition: PCLPointField.h:20
pcl::getFields
void getFields(const pcl::PointCloud< PointT > &, std::vector< pcl::PCLPointField > &fields)
Definition: io.hpp:85
pcl::BORDER_DEFAULT
@ BORDER_DEFAULT
Definition: io.h:226
pcl::BORDER_REPLICATE
@ BORDER_REPLICATE
Definition: io.h:223
pcl::PointCloud
PointCloud represents the base class in PCL for storing collections of 3D points.
Definition: distances.h:55
pcl::PCLPointField::INT32
@ INT32
Definition: PCLPointField.h:24
pcl::BORDER_TRANSPARENT
@ BORDER_TRANSPARENT
Definition: io.h:225
pcl::PointXYZRGB
A point structure representing Euclidean xyz coordinates, and the RGB color.
Definition: point_types.hpp:628
pcl::copyPointCloud
void copyPointCloud(const pcl::PointCloud< PointInT > &cloud_in, pcl::PointCloud< PointOutT > &cloud_out)
Copy all the fields from a given point cloud into a new point cloud.
Definition: io.hpp:122
pcl::PCLPointField::FLOAT32
@ FLOAT32
Definition: PCLPointField.h:26
pcl::PCLPointCloud2::concatenate
static bool concatenate(pcl::PCLPointCloud2 &cloud1, const pcl::PCLPointCloud2 &cloud2)
Inplace concatenate two pcl::PCLPointCloud2.
pcl::PCLPointField::UINT32
@ UINT32
Definition: PCLPointField.h:25
pcl::io::swapByte< 1 >
void swapByte< 1 >(char *bytes)
specialization of swapByte for dimension 1
Definition: io.h:511
pcl::BORDER_REFLECT_101
@ BORDER_REFLECT_101
Definition: io.h:225
pcl::PCLPointField::UINT8
@ UINT8
Definition: PCLPointField.h:21
PCL_DEPRECATED
#define PCL_DEPRECATED(Major, Minor, Message)
macro for compatibility across compilers and help remove old deprecated items for the Major....
Definition: pcl_macros.h:156
pcl::PCLPointCloud2::fields
std::vector<::pcl::PCLPointField > fields
Definition: PCLPointCloud2.h:23
pcl::BORDER_WRAP
@ BORDER_WRAP
Definition: io.h:224
pcl::PCLPointField::INT16
@ INT16
Definition: PCLPointField.h:22
pcl::PCLPointField::UINT16
@ UINT16
Definition: PCLPointField.h:23
pcl::getFieldsSizes
PCL_EXPORTS void getFieldsSizes(const std::vector< pcl::PCLPointField > &fields, std::vector< int > &field_sizes)
Obtain a vector with the sizes of all valid fields (e.g., not "_")
pcl::PolygonMesh
Definition: PolygonMesh.h:14
pcl::getFieldSize
int getFieldSize(const int datatype)
Obtains the size of a specific field data type in bytes.
Definition: io.h:119
pcl::PCLPointField::FLOAT64
@ FLOAT64
Definition: PCLPointField.h:27
pcl::getEigenAsPointCloud
PCL_EXPORTS bool getEigenAsPointCloud(Eigen::MatrixXf &in, pcl::PCLPointCloud2 &out)
Copy the XYZ dimensions from an Eigen MatrixXf into a pcl::PCLPointCloud2 message.
pcl::InterpolationType
InterpolationType
Definition: io.h:221
pcl::Indices
IndicesAllocator<> Indices
Type used for indices in PCL.
Definition: types.h:131
pcl::PCLPointCloud2
Definition: PCLPointCloud2.h:16
pcl::PointCloud::concatenate
static bool concatenate(pcl::PointCloud< PointT > &cloud1, const pcl::PointCloud< PointT > &cloud2)
Definition: point_cloud.h:230
pcl::concatenate
PCL_EXPORTS bool concatenate(const pcl::PointCloud< PointT > &cloud1, const pcl::PointCloud< PointT > &cloud2, pcl::PointCloud< PointT > &cloud_out)
Concatenate two pcl::PointCloud<PointT>
Definition: io.h:248
pcl::io::swapByte< 8 >
void swapByte< 8 >(char *bytes)
specialization of swapByte for dimension 8
Definition: io.h:534
pcl::BORDER_REFLECT
@ BORDER_REFLECT
Definition: io.h:224
pcl::IndicesAllocator
std::vector< index_t, Allocator > IndicesAllocator
Type used for indices in PCL.
Definition: types.h:126
pcl::interpolatePointIndex
PCL_EXPORTS int interpolatePointIndex(int p, int length, InterpolationType type)
pcl::getFieldIndex
int getFieldIndex(const pcl::PointCloud< PointT > &, const std::string &field_name, std::vector< pcl::PCLPointField > &fields)
Definition: io.hpp:54
pcl::getFieldsList
std::string getFieldsList(const pcl::PointCloud< PointT > &)
Get the list of all fields available in a given cloud.
Definition: io.hpp:109
pcl::PolygonMesh::concatenate
static bool concatenate(pcl::PolygonMesh &mesh1, const pcl::PolygonMesh &mesh2)
Inplace concatenate two pcl::PolygonMesh.
Definition: PolygonMesh.h:31
pcl::getFieldType
int getFieldType(const int size, char type)
Obtains the type of the PCLPointField from a specific size and type.
Definition: io.h:158
pcl::io::swapByte
void swapByte(char *bytes)
swap bytes order of a char array of length N
PCL_EXPORTS
#define PCL_EXPORTS
Definition: pcl_macros.h:323