|
Point Cloud Library (PCL)
1.6.0
|
00001 /* 00002 * Software License Agreement (BSD License) 00003 * 00004 * Point Cloud Library (PCL) - www.pointclouds.org 00005 * Copyright (c) 2011, Alexandru-Eugen Ichim 00006 * Willow Garage, Inc 00007 * All rights reserved. 00008 * 00009 * Redistribution and use in source and binary forms, with or without 00010 * modification, are permitted provided that the following conditions 00011 * are met: 00012 * 00013 * * Redistributions of source code must retain the above copyright 00014 * notice, this list of conditions and the following disclaimer. 00015 * * Redistributions in binary form must reproduce the above 00016 * copyright notice, this list of conditions and the following 00017 * disclaimer in the documentation and/or other materials provided 00018 * with the distribution. 00019 * * Neither the name of Willow Garage, Inc. nor the names of its 00020 * contributors may be used to endorse or promote products derived 00021 * from this software without specific prior written permission. 00022 * 00023 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 00024 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 00025 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 00026 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 00027 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 00028 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 00029 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 00030 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 00031 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 00032 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 00033 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 00034 * POSSIBILITY OF SUCH DAMAGE. 00035 * 00036 * $Id: ppf.h 4864 2012-03-01 01:11:22Z rusu $ 00037 */ 00038 00039 #ifndef PCL_PPF_H_ 00040 #define PCL_PPF_H_ 00041 00042 #include <pcl/features/feature.h> 00043 #include <boost/unordered_map.hpp> 00044 00045 namespace pcl 00046 { 00057 PCL_EXPORTS bool 00058 computePPFPairFeature (const Eigen::Vector4f &p1, const Eigen::Vector4f &n1, 00059 const Eigen::Vector4f &p2, const Eigen::Vector4f &n2, 00060 float &f1, float &f2, float &f3, float &f4); 00061 00062 00076 template <typename PointInT, typename PointNT, typename PointOutT> 00077 class PPFEstimation : public FeatureFromNormals<PointInT, PointNT, PointOutT> 00078 { 00079 public: 00080 using PCLBase<PointInT>::indices_; 00081 using Feature<PointInT, PointOutT>::input_; 00082 using Feature<PointInT, PointOutT>::feature_name_; 00083 using Feature<PointInT, PointOutT>::getClassName; 00084 using FeatureFromNormals<PointInT, PointNT, PointOutT>::normals_; 00085 00086 typedef pcl::PointCloud<PointOutT> PointCloudOut; 00087 00089 PPFEstimation (); 00090 00091 00092 private: 00098 void 00099 computeFeature (PointCloudOut &output); 00100 00104 void 00105 computeFeatureEigen (pcl::PointCloud<Eigen::MatrixXf> &) {} 00106 }; 00107 00121 template <typename PointInT, typename PointNT> 00122 class PPFEstimation<PointInT, PointNT, Eigen::MatrixXf> : public PPFEstimation<PointInT, PointNT, pcl::PPFSignature> 00123 { 00124 public: 00125 using PPFEstimation<PointInT, PointNT, pcl::PPFSignature>::getClassName; 00126 using PPFEstimation<PointInT, PointNT, pcl::PPFSignature>::input_; 00127 using PPFEstimation<PointInT, PointNT, pcl::PPFSignature>::normals_; 00128 using PPFEstimation<PointInT, PointNT, pcl::PPFSignature>::indices_; 00129 00130 private: 00136 void 00137 computeFeatureEigen (pcl::PointCloud<Eigen::MatrixXf> &output); 00138 00142 void 00143 compute (pcl::PointCloud<pcl::Normal> &) {} 00144 }; 00145 } 00146 00147 #endif // PCL_PPF_H_
1.7.6.1