Point Cloud Library (PCL)  1.15.1-dev
point_tests.h
1 /*
2  * Software License Agreement (BSD License)
3  *
4  * Point Cloud Library (PCL) - www.pointclouds.org
5  * Copyright (c) 2012-, Open Perception, Inc.
6  *
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  *
13  * * Redistributions of source code must retain the above copyright
14  * notice, this list of conditions and the following disclaimer.
15  * * Redistributions in binary form must reproduce the above
16  * copyright notice, this list of conditions and the following
17  * disclaimer in the documentation and/or other materials provided
18  * with the distribution.
19  * * Neither the name of the copyright holder(s) nor the names of its
20  * contributors may be used to endorse or promote products derived
21  * from this software without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
26  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
27  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
28  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
29  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
30  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
31  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
33  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34  * POSSIBILITY OF SUCH DAMAGE.
35  *
36  * $Id: point_types.hpp 6415 2012-07-16 20:11:47Z rusu $
37  *
38  */
39 
40 #pragma once
41 
42 #include <pcl/field_traits.h>
43 #include <pcl/point_types.h>
44 
45 #ifdef _MSC_VER
46 #include <Eigen/src/StlSupport/details.h>
47 #endif
48 
49 namespace pcl
50 {
51  /** Tests if the 3D components of a point are all finite
52  * param[in] pt point to be tested
53  * return true if finite, false otherwise
54  */
55  template <typename PointT> inline bool
56  isFinite (const PointT &pt)
57  {
58  return (std::isfinite (pt.x) && std::isfinite (pt.y) && std::isfinite (pt.z));
59  }
60 
61 #ifdef _MSC_VER
62  template <typename PointT> inline bool
63  isFinite (const Eigen::internal::workaround_msvc_stl_support<PointT> &pt)
64  {
65  return isFinite<PointT> (static_cast<const PointT&> (pt));
66  }
67 #endif
68 
69  template<> inline bool isFinite<pcl::Axis>(const pcl::Axis&) { return (true); }
70  template<> inline bool isFinite<pcl::BRISKSignature512>(const pcl::BRISKSignature512&) { return (true); }
71  template<> inline bool isFinite<pcl::BorderDescription>(const pcl::BorderDescription &) { return true; }
72  template<> inline bool isFinite<pcl::Boundary>(const pcl::Boundary&) { return (true); }
73  template<> inline bool isFinite<pcl::CPPFSignature>(const pcl::CPPFSignature&) { return (true); }
74  template<> inline bool isFinite<pcl::ESFSignature640>(const pcl::ESFSignature640&) { return (true); }
75  template<> inline bool isFinite<pcl::FPFHSignature33>(const pcl::FPFHSignature33&) { return (true); }
76  template<> inline bool isFinite<pcl::GASDSignature512>(const pcl::GASDSignature512&) { return (true); }
77  template<> inline bool isFinite<pcl::GASDSignature984>(const pcl::GASDSignature984&) { return (true); }
78  template<> inline bool isFinite<pcl::GASDSignature7992>(const pcl::GASDSignature7992&) { return (true); }
79  template<> inline bool isFinite<pcl::GRSDSignature21>(const pcl::GRSDSignature21&) { return (true); }
80  template<> inline bool isFinite<pcl::Intensity>(const pcl::Intensity&) { return (true); }
81  template<> inline bool isFinite<pcl::IntensityGradient>(const pcl::IntensityGradient&) { return (true); }
82  template<> inline bool isFinite<pcl::Label>(const pcl::Label&) { return (true); }
83  template<> inline bool isFinite<pcl::MomentInvariants>(const pcl::MomentInvariants&) { return (true); }
84  template<> inline bool isFinite<pcl::NormalBasedSignature12>(const pcl::NormalBasedSignature12&) { return (true); }
85  template<> inline bool isFinite<pcl::PFHRGBSignature250>(const pcl::PFHRGBSignature250&) { return (true); }
86  template<> inline bool isFinite<pcl::PFHSignature125>(const pcl::PFHSignature125&) { return (true); }
87  template<> inline bool isFinite<pcl::PPFRGBSignature>(const pcl::PPFRGBSignature&) { return (true); }
88 
89  template<> inline bool isFinite<pcl::PPFSignature>(const pcl::PPFSignature& pt)
90  {
91  return std::isfinite(pt.f1) && std::isfinite(pt.f2) && std::isfinite(pt.f3) && std::isfinite(pt.f4) && std::isfinite(pt.alpha_m);
92  }
93 
94  template<> inline bool isFinite<pcl::PrincipalCurvatures>(const pcl::PrincipalCurvatures&) { return (true); }
95  template<> inline bool isFinite<pcl::PrincipalRadiiRSD>(const pcl::PrincipalRadiiRSD&) { return (true); }
96  template<> inline bool isFinite<pcl::RGB>(const pcl::RGB&) { return (true); }
97  template<> inline bool isFinite<pcl::ReferenceFrame>(const pcl::ReferenceFrame&) { return (true); }
98  template<> inline bool isFinite<pcl::SHOT1344>(const pcl::SHOT1344&) { return (true); }
99  template<> inline bool isFinite<pcl::SHOT352>(const pcl::SHOT352&) { return (true); }
100  template<> inline bool isFinite<pcl::ShapeContext1980>(const pcl::ShapeContext1980&) { return (true); }
101  template<> inline bool isFinite<pcl::UniqueShapeContext1960>(const pcl::UniqueShapeContext1960&) { return (true); }
102  template<> inline bool isFinite<pcl::VFHSignature308>(const pcl::VFHSignature308&) { return (true); }
103 
104  // specification for pcl::PointXY
105  template <> inline bool
106  isFinite<pcl::PointXY> (const pcl::PointXY &p)
107  {
108  return (std::isfinite (p.x) && std::isfinite (p.y));
109  }
110 
111  // specification for pcl::Normal
112  template <> inline bool
113  isFinite<pcl::Normal> (const pcl::Normal &n)
114  {
115  return (std::isfinite (n.normal_x) && std::isfinite (n.normal_y) && std::isfinite (n.normal_z));
116  }
117 
118  // generic fallback cases
119  template <typename PointT, traits::HasNoXY<PointT> = true> constexpr inline bool
120  isXYFinite (const PointT&) noexcept
121  {
122  return true;
123  }
124 
125  template <typename PointT, traits::HasNoXYZ<PointT> = true> constexpr inline bool
126  isXYZFinite (const PointT&) noexcept
127  {
128  return true;
129  }
130 
131  template <typename PointT, traits::HasNoNormal<PointT> = true> constexpr inline bool
132  isNormalFinite (const PointT&) noexcept
133  {
134  return true;
135  }
136 
137  // special cases for checks
138  template <typename PointT, traits::HasXY<PointT> = true> inline bool
139  isXYFinite (const PointT& pt) noexcept
140  {
141  return std::isfinite(pt.x) && std::isfinite(pt.y);
142  }
143 
144  template <typename PointT, traits::HasXYZ<PointT> = true> inline bool
145  isXYZFinite (const PointT& pt) noexcept
146  {
147  return std::isfinite(pt.x) && std::isfinite(pt.y) && std::isfinite(pt.z);
148  }
149 
150  template <typename PointT, traits::HasNormal<PointT> = true> inline bool
151  isNormalFinite (const PointT& pt) noexcept
152  {
153  return std::isfinite(pt.normal_x) && std::isfinite(pt.normal_y) && std::isfinite(pt.normal_z);
154  }
155 }
Defines all the PCL implemented PointT point type structures.
bool isFinite(const PointT &pt)
Tests if the 3D components of a point are all finite param[in] pt point to be tested return true if f...
Definition: point_tests.h:56
constexpr bool isXYFinite(const PointT &) noexcept
Definition: point_tests.h:120
constexpr bool isNormalFinite(const PointT &) noexcept
Definition: point_tests.h:132
constexpr bool isXYZFinite(const PointT &) noexcept
Definition: point_tests.h:126
A point structure representing an Axis using its normal coordinates.
A point structure representing the Binary Robust Invariant Scalable Keypoints (BRISK).
A structure to store if a point in a range image lies on a border between an obstacle and the backgro...
A point structure representing a description of whether a point is lying on a surface boundary or not...
A point structure for storing the Point Pair Feature (CPPF) values.
A point structure representing the Ensemble of Shape Functions (ESF).
A point structure representing the Fast Point Feature Histogram (FPFH).
A point structure representing the Globally Aligned Spatial Distribution (GASD) shape descriptor.
A point structure representing the Globally Aligned Spatial Distribution (GASD) shape and color descr...
A point structure representing the Globally Aligned Spatial Distribution (GASD) shape and color descr...
A point structure representing the Global Radius-based Surface Descriptor (GRSD).
A point structure representing the intensity gradient of an XYZI point cloud.
A point structure representing the grayscale intensity in single-channel images.
A point structure representing the three moment invariants.
A point structure representing the Normal Based Signature for a feature matrix of 4-by-3.
A point structure representing normal coordinates and the surface curvature estimate.
A point structure representing the Point Feature Histogram with colors (PFHRGB).
A point structure representing the Point Feature Histogram (PFH).
A point structure for storing the Point Pair Color Feature (PPFRGB) values.
A point structure for storing the Point Pair Feature (PPF) values.
A 2D point structure representing Euclidean xy coordinates.
A point structure representing Euclidean xyz coordinates, and the RGB color.
A point structure representing the principal curvatures and their magnitudes.
A point structure representing the minimum and maximum surface radii (in meters) computed using RSD.
A structure representing RGB color information.
A point structure representing the generic Signature of Histograms of OrienTations (SHOT) - shape+col...
A point structure representing the generic Signature of Histograms of OrienTations (SHOT) - shape onl...
A point structure representing a Shape Context.
A point structure representing a Unique Shape Context.
A point structure representing the Viewpoint Feature Histogram (VFH).