Point Cloud Library (PCL)  1.11.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/point_types.h>
43 
44 #ifdef _MSC_VER
45 #include <Eigen/src/StlSupport/details.h>
46 #endif
47 
48 namespace pcl
49 {
50  /** Tests if the 3D components of a point are all finite
51  * param[in] pt point to be tested
52  * return true if finite, false otherwise
53  */
54  template <typename PointT> inline bool
55  isFinite (const PointT &pt)
56  {
57  return (std::isfinite (pt.x) && std::isfinite (pt.y) && std::isfinite (pt.z));
58  }
59 
60 #ifdef _MSC_VER
61  template <typename PointT> inline bool
62  isFinite (const Eigen::internal::workaround_msvc_stl_support<PointT> &pt)
63  {
64  return isFinite<PointT> (static_cast<const PointT&> (pt));
65  }
66 #endif
67 
68  template<> inline bool isFinite<pcl::Axis>(const pcl::Axis&) { return (true); }
69  template<> inline bool isFinite<pcl::BRISKSignature512>(const pcl::BRISKSignature512&) { return (true); }
70  template<> inline bool isFinite<pcl::BorderDescription>(const pcl::BorderDescription &) { return true; }
71  template<> inline bool isFinite<pcl::Boundary>(const pcl::Boundary&) { return (true); }
72  template<> inline bool isFinite<pcl::ESFSignature640>(const pcl::ESFSignature640&) { return (true); }
73  template<> inline bool isFinite<pcl::FPFHSignature33>(const pcl::FPFHSignature33&) { return (true); }
74  template<> inline bool isFinite<pcl::Intensity>(const pcl::Intensity&) { return (true); }
75  template<> inline bool isFinite<pcl::IntensityGradient>(const pcl::IntensityGradient&) { return (true); }
76  template<> inline bool isFinite<pcl::Label>(const pcl::Label&) { return (true); }
77  template<> inline bool isFinite<pcl::MomentInvariants>(const pcl::MomentInvariants&) { return (true); }
78  template<> inline bool isFinite<pcl::NormalBasedSignature12>(const pcl::NormalBasedSignature12&) { return (true); }
79  template<> inline bool isFinite<pcl::PFHRGBSignature250>(const pcl::PFHRGBSignature250&) { return (true); }
80  template<> inline bool isFinite<pcl::PFHSignature125>(const pcl::PFHSignature125&) { return (true); }
81  template<> inline bool isFinite<pcl::PPFRGBSignature>(const pcl::PPFRGBSignature&) { return (true); }
82  template<> inline bool isFinite<pcl::PPFSignature>(const pcl::PPFSignature&) { return (true); }
83  template<> inline bool isFinite<pcl::PrincipalCurvatures>(const pcl::PrincipalCurvatures&) { return (true); }
84  template<> inline bool isFinite<pcl::PrincipalRadiiRSD>(const pcl::PrincipalRadiiRSD&) { return (true); }
85  template<> inline bool isFinite<pcl::RGB>(const pcl::RGB&) { return (true); }
86  template<> inline bool isFinite<pcl::ReferenceFrame>(const pcl::ReferenceFrame&) { return (true); }
87  template<> inline bool isFinite<pcl::SHOT1344>(const pcl::SHOT1344&) { return (true); }
88  template<> inline bool isFinite<pcl::SHOT352>(const pcl::SHOT352&) { return (true); }
89  template<> inline bool isFinite<pcl::ShapeContext1980>(const pcl::ShapeContext1980&) { return (true); }
90  template<> inline bool isFinite<pcl::UniqueShapeContext1960>(const pcl::UniqueShapeContext1960&) { return (true); }
91  template<> inline bool isFinite<pcl::VFHSignature308>(const pcl::VFHSignature308&) { return (true); }
92 
93  // specification for pcl::PointXY
94  template <> inline bool
95  isFinite<pcl::PointXY> (const pcl::PointXY &p)
96  {
97  return (std::isfinite (p.x) && std::isfinite (p.y));
98  }
99 
100  // specification for pcl::Normal
101  template <> inline bool
102  isFinite<pcl::Normal> (const pcl::Normal &n)
103  {
104  return (std::isfinite (n.normal_x) && std::isfinite (n.normal_y) && std::isfinite (n.normal_z));
105  }
106 
107  // generic fallback cases
108  template <typename PointT, traits::HasNoXY<PointT> = true> constexpr inline bool
109  isXYFinite (const PointT&) noexcept
110  {
111  return true;
112  }
113 
114  template <typename PointT, traits::HasNoXYZ<PointT> = true> constexpr inline bool
115  isXYZFinite (const PointT&) noexcept
116  {
117  return true;
118  }
119 
120  template <typename PointT, traits::HasNoNormal<PointT> = true> constexpr inline bool
121  isNormalFinite (const PointT&) noexcept
122  {
123  return true;
124  }
125 
126  // special cases for checks
127  template <typename PointT, traits::HasXY<PointT> = true> inline bool
128  isXYFinite (const PointT& pt) noexcept
129  {
130  return std::isfinite(pt.x) && std::isfinite(pt.y);
131  }
132 
133  template <typename PointT, traits::HasXYZ<PointT> = true> inline bool
134  isXYZFinite (const PointT& pt) noexcept
135  {
136  return std::isfinite(pt.x) && std::isfinite(pt.y) && std::isfinite(pt.z);
137  }
138 
139  template <typename PointT, traits::HasNormal<PointT> = true> inline bool
140  isNormalFinite (const PointT& pt) noexcept
141  {
142  return std::isfinite(pt.normal_x) && std::isfinite(pt.normal_y) && std::isfinite(pt.normal_z);
143  }
144 }
pcl::PFHSignature125
A point structure representing the Point Feature Histogram (PFH).
Definition: point_types.hpp:1264
pcl
Definition: convolution.h:46
point_types.h
pcl::Normal
A point structure representing normal coordinates and the surface curvature estimate.
Definition: point_types.hpp:812
pcl::PrincipalRadiiRSD
A point structure representing the minimum and maximum surface radii (in meters) computed using RSD.
Definition: point_types.hpp:1198
pcl::PPFRGBSignature
A point structure for storing the Point Pair Color Feature (PPFRGB) values.
Definition: point_types.hpp:1329
pcl::isFinite
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:55
pcl::NormalBasedSignature12
A point structure representing the Normal Based Signature for a feature matrix of 4-by-3.
Definition: point_types.hpp:1351
pcl::isXYZFinite
constexpr bool isXYZFinite(const PointT &) noexcept
Definition: point_tests.h:115
pcl::ReferenceFrame
Definition: point_types.hpp:1451
pcl::Boundary
A point structure representing a description of whether a point is lying on a surface boundary or not...
Definition: point_types.hpp:1213
pcl::FPFHSignature33
A point structure representing the Fast Point Feature Histogram (FPFH).
Definition: point_types.hpp:1476
pcl::PointXYZRGB
A point structure representing Euclidean xyz coordinates, and the RGB color.
Definition: point_types.hpp:628
pcl::UniqueShapeContext1960
A point structure representing a Unique Shape Context.
Definition: point_types.hpp:1379
pcl::Intensity
A point structure representing the grayscale intensity in single-channel images.
Definition: point_types.hpp:373
pcl::PointXY::x
float x
Definition: point_types.hpp:746
pcl::ShapeContext1980
A point structure representing a Shape Context.
Definition: point_types.hpp:1364
pcl::PointXY::y
float y
Definition: point_types.hpp:747
pcl::Label
Definition: point_types.hpp:515
pcl::PPFSignature
A point structure for storing the Point Pair Feature (PPF) values.
Definition: point_types.hpp:1292
pcl::BRISKSignature512
A point structure representing the Binary Robust Invariant Scalable Keypoints (BRISK).
Definition: point_types.hpp:1518
pcl::Axis
A point structure representing an Axis using its normal coordinates.
Definition: point_types.hpp:845
pcl::RGB
A structure representing RGB color information.
Definition: point_types.hpp:345
pcl::PFHRGBSignature250
A point structure representing the Point Feature Histogram with colors (PFHRGB).
Definition: point_types.hpp:1278
pcl::MomentInvariants
A point structure representing the three moment invariants.
Definition: point_types.hpp:1183
pcl::PointXY
A 2D point structure representing Euclidean xy coordinates.
Definition: point_types.hpp:744
pcl::PrincipalCurvatures
A point structure representing the principal curvatures and their magnitudes.
Definition: point_types.hpp:1233
pcl::ESFSignature640
A point structure representing the Ensemble of Shape Functions (ESF).
Definition: point_types.hpp:1536
pcl::isXYFinite
constexpr bool isXYFinite(const PointT &) noexcept
Definition: point_tests.h:109
pcl::BorderDescription
A structure to store if a point in a range image lies on a border between an obstacle and the backgro...
Definition: point_types.hpp:1626
pcl::SHOT1344
A point structure representing the generic Signature of Histograms of OrienTations (SHOT) - shape+col...
Definition: point_types.hpp:1410
pcl::SHOT352
A point structure representing the generic Signature of Histograms of OrienTations (SHOT) - shape onl...
Definition: point_types.hpp:1394
pcl::isNormalFinite
constexpr bool isNormalFinite(const PointT &) noexcept
Definition: point_tests.h:121
pcl::VFHSignature308
A point structure representing the Viewpoint Feature Histogram (VFH).
Definition: point_types.hpp:1490
pcl::IntensityGradient
A point structure representing the intensity gradient of an XYZI point cloud.
Definition: point_types.hpp:1644