statistical_multiscale_interest_region_extraction.h
Go to the documentation of this file.
00001 /*
00002  * Software License Agreement (BSD License)
00003  *
00004  *  Point Cloud Library (PCL) - www.pointclouds.org
00005  *  Copyright (c) 2011, Alexandru-Eugen Ichim
00006  *  Copyright (c) 2012-, Open Perception, Inc.
00007  *
00008  *  All rights reserved.
00009  *
00010  *  Redistribution and use in source and binary forms, with or without
00011  *  modification, are permitted provided that the following conditions
00012  *  are met:
00013  *
00014  *   * Redistributions of source code must retain the above copyright
00015  *     notice, this list of conditions and the following disclaimer.
00016  *   * Redistributions in binary form must reproduce the above
00017  *     copyright notice, this list of conditions and the following
00018  *     disclaimer in the documentation and/or other materials provided
00019  *     with the distribution.
00020  *   * Neither the name of the copyright holder(s) nor the names of its
00021  *     contributors may be used to endorse or promote products derived
00022  *     from this software without specific prior written permission.
00023  *
00024  *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
00025  *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
00026  *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
00027  *  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
00028  *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
00029  *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
00030  *  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
00031  *  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
00032  *  CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
00033  *  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
00034  *  ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
00035  *  POSSIBILITY OF SUCH DAMAGE.
00036  *
00037  *  $Id$
00038  */
00039 
00040 #ifndef STATISTICAL_MULTISCALE_INTEREST_REGION_EXTRACTION_H_
00041 #define STATISTICAL_MULTISCALE_INTEREST_REGION_EXTRACTION_H_
00042 
00043 #include <pcl/pcl_base.h>
00044 #include <list>
00045 
00046 namespace pcl
00047 {
00064   template <typename PointT>
00065   class StatisticalMultiscaleInterestRegionExtraction : public PCLBase<PointT>
00066   {
00067     public:
00068       typedef boost::shared_ptr <std::vector<int> > IndicesPtr;
00069       typedef typename boost::shared_ptr<StatisticalMultiscaleInterestRegionExtraction<PointT> > Ptr;
00070       typedef typename boost::shared_ptr<const StatisticalMultiscaleInterestRegionExtraction<PointT> > ConstPtr;
00071 
00072 
00074       StatisticalMultiscaleInterestRegionExtraction () :
00075         scale_values_ (), geodesic_distances_ (), F_scales_ ()
00076       {};
00077 
00081       void
00082       generateCloudGraph ();
00083 
00087       void
00088       computeRegionsOfInterest (std::list<IndicesPtr>& rois);
00089 
00093       inline void
00094       setScalesVector (std::vector<float> &scale_values) { scale_values_ = scale_values; }
00095 
00097       inline std::vector<float>
00098       getScalesVector () { return scale_values_; }
00099 
00100 
00101     private:
00103       bool
00104       initCompute ();
00105 
00106       void
00107       geodesicFixedRadiusSearch (size_t &query_index,
00108                                  float &radius,
00109                                  std::vector<int> &result_indices);
00110 
00111       void
00112       computeF ();
00113 
00114       void
00115       extractExtrema (std::list<IndicesPtr>& rois);
00116 
00117       using PCLBase<PointT>::initCompute;
00118       using PCLBase<PointT>::input_;
00119       std::vector<float> scale_values_;
00120       std::vector<std::vector<float> > geodesic_distances_;
00121       std::vector<std::vector<float> > F_scales_;
00122   };
00123 }
00124 
00125 
00126 #ifdef PCL_NO_PRECOMPILE
00127 #include <pcl/features/impl/statistical_multiscale_interest_region_extraction.hpp>
00128 #endif
00129 
00130 #endif /* STATISTICAL_MULTISCALE_INTEREST_REGION_EXTRACTION_H_ */


pcl
Author(s): Open Perception
autogenerated on Wed Aug 26 2015 15:33:44