Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 #include "MinDist.h"
00036
00037 #include "Functions.h"
00038
00039
00040
00041 template<typename T>
00042 MinDistDataPointsFilter<T>::MinDistDataPointsFilter(const Parameters& params):
00043 PointMatcher<T>::DataPointsFilter("MinDistDataPointsFilter",
00044 MinDistDataPointsFilter::availableParameters(), params),
00045 dim(Parametrizable::get<unsigned>("dim")),
00046 minDist(Parametrizable::get<T>("minDist"))
00047 {
00048 }
00049
00050
00051 template<typename T>
00052 typename PointMatcher<T>::DataPoints MinDistDataPointsFilter<T>::filter(
00053 const DataPoints& input)
00054 {
00055 DataPoints output(input);
00056 inPlaceFilter(output);
00057 return output;
00058 }
00059
00060
00061 template<typename T>
00062 void MinDistDataPointsFilter<T>::inPlaceFilter(
00063 DataPoints& cloud)
00064 {
00065 using namespace PointMatcherSupport;
00066
00067 if (dim >= cloud.features.rows() - 1)
00068 throw InvalidParameter((boost::format("MinDistDataPointsFilter: Error, filtering on dimension number %1%, larger than feature dimensionality %2%") % dim % (cloud.features.rows() - 2)).str());
00069
00070 const int nbPointsIn = cloud.features.cols();
00071 const int nbRows = cloud.features.rows();
00072
00073 int j = 0;
00074 if(dim == -1)
00075 {
00076 const T absMinDist = anyabs(minDist);
00077 for (int i = 0; i < nbPointsIn; ++i)
00078 {
00079 if (cloud.features.col(i).head(nbRows-1).norm() > absMinDist)
00080 {
00081 cloud.setColFrom(j, cloud, i);
00082 ++j;
00083 }
00084 }
00085 }
00086 else
00087 {
00088 for (int i = 0; i < nbPointsIn; ++i)
00089 {
00090 if ((cloud.features(dim, i)) > minDist)
00091 {
00092 cloud.setColFrom(j, cloud, i);
00093 ++j;
00094 }
00095 }
00096 }
00097
00098 cloud.conservativeResize(j);
00099
00100 }
00101
00102 template struct MinDistDataPointsFilter<float>;
00103 template struct MinDistDataPointsFilter<double>;