00001 // kate: replace-tabs off; indent-width 4; indent-mode normal 00002 // vim: ts=4:sw=4:noexpandtab 00003 /* 00004 00005 Copyright (c) 2010--2018, 00006 François Pomerleau and Stephane Magnenat, ASL, ETHZ, Switzerland 00007 You can contact the authors at <f dot pomerleau at gmail dot com> and 00008 <stephane at magnenat dot net> 00009 00010 All rights reserved. 00011 00012 Redistribution and use in source and binary forms, with or without 00013 modification, are permitted provided that the following conditions are met: 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 copyright 00017 notice, this list of conditions and the following disclaimer in the 00018 documentation and/or other materials provided with the distribution. 00019 * Neither the name of the <organization> nor the 00020 names of its contributors may be used to endorse or promote products 00021 derived from this software without specific prior written permission. 00022 00023 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 00024 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 00025 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 00026 DISCLAIMED. IN NO EVENT SHALL ETH-ASL BE LIABLE FOR ANY 00027 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 00028 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 00029 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 00030 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 00031 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 00032 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00033 00034 */ 00035 #include "MaxPointCount.h" 00036 00037 // MaxPointCountDataPointsFilter 00038 // Constructor 00039 template<typename T> 00040 MaxPointCountDataPointsFilter<T>::MaxPointCountDataPointsFilter(const Parameters& params): 00041 PointMatcher<T>::DataPointsFilter("MaxPointCountDataPointsFilter", 00042 MaxPointCountDataPointsFilter::availableParameters(), params), 00043 maxCount(Parametrizable::get<size_t>("maxCount")) 00044 { 00045 try 00046 { 00047 seed = this->template get<size_t>("seed"); 00048 } 00049 catch (const InvalidParameter& e) 00050 { 00051 seed = static_cast<size_t>(1); // rand default seed number 00052 } 00053 } 00054 00055 // Compute 00056 template<typename T> 00057 typename PointMatcher<T>::DataPoints 00058 MaxPointCountDataPointsFilter<T>::filter(const DataPoints& input) 00059 { 00060 DataPoints output(input); 00061 inPlaceFilter(output); 00062 return output; 00063 } 00064 00065 // In-place filter 00066 template<typename T> 00067 void MaxPointCountDataPointsFilter<T>::inPlaceFilter(DataPoints& cloud) 00068 { 00069 const size_t N = static_cast<size_t> (cloud.features.cols() - 1); 00070 00071 if (maxCount <= N) 00072 { 00073 //Re-init seed at each call, to ensure same results 00074 std::srand(seed); 00075 00076 for(size_t j=0; j<maxCount; ++j) 00077 { 00078 //Get a random index in [j; N] 00079 const size_t idx = j + static_cast<size_t>((N-j)*(static_cast<float>(std::rand()/static_cast<float>(RAND_MAX)))); 00080 00081 //Switch columns j and idx 00082 const auto feat = cloud.features.col(j); 00083 cloud.features.col(j) = cloud.features.col(idx); 00084 cloud.features.col(idx) = feat; 00085 00086 if (cloud.descriptors.cols() > 0) 00087 { 00088 const auto desc = cloud.descriptors.col(j); 00089 cloud.descriptors.col(j) = cloud.descriptors.col(idx); 00090 cloud.descriptors.col(idx) = desc; 00091 } 00092 if (cloud.times.cols() > 0) 00093 { 00094 const auto time = cloud.times.col(j); 00095 cloud.times.col(j) = cloud.times.col(idx); 00096 cloud.times.col(idx) = time; 00097 } 00098 } 00099 //Resize the cloud 00100 cloud.conservativeResize(maxCount); 00101 } 00102 } 00103 00104 template struct MaxPointCountDataPointsFilter<float>; 00105 template struct MaxPointCountDataPointsFilter<double>; 00106