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 "FixStepSampling.h"
00036
00037 #include "PointMatcherPrivate.h"
00038
00039
00040
00041
00042 template<typename T>
00043 FixStepSamplingDataPointsFilter<T>::FixStepSamplingDataPointsFilter(const Parameters& params):
00044 PointMatcher<T>::DataPointsFilter("FixStepSamplingDataPointsFilter",
00045 FixStepSamplingDataPointsFilter::availableParameters(), params),
00046 startStep(Parametrizable::get<unsigned>("startStep")),
00047 endStep(Parametrizable::get<unsigned>("endStep")),
00048 stepMult(Parametrizable::get<double>("stepMult")),
00049 step(startStep)
00050 {
00051 LOG_INFO_STREAM("Using FixStepSamplingDataPointsFilter with startStep=" << startStep << ", endStep=" << endStep << ", stepMult=" << stepMult);
00052 }
00053
00054
00055 template<typename T>
00056 void FixStepSamplingDataPointsFilter<T>::init()
00057 {
00058 step = startStep;
00059 }
00060
00061
00062 template<typename T>
00063 typename PointMatcher<T>::DataPoints
00064 FixStepSamplingDataPointsFilter<T>::filter(const DataPoints& input)
00065 {
00066 DataPoints output(input);
00067 inPlaceFilter(output);
00068 return output;
00069 }
00070
00071
00072 template<typename T>
00073 void FixStepSamplingDataPointsFilter<T>::inPlaceFilter(DataPoints& cloud)
00074 {
00075 const int iStep(step);
00076 const int nbPointsIn = cloud.features.cols();
00077 const int phase(rand() % iStep);
00078
00079 int j = 0;
00080 for (int i = phase; i < nbPointsIn; i += iStep)
00081 {
00082 cloud.setColFrom(j, cloud, i);
00083 ++j;
00084 }
00085
00086 cloud.conservativeResize(j);
00087
00088 const double deltaStep(startStep * stepMult - startStep);
00089 step *= stepMult;
00090 if (deltaStep < 0 && step < endStep)
00091 step = endStep;
00092 if (deltaStep > 0 && step > endStep)
00093 step = endStep;
00094
00095 }
00096
00097 template struct FixStepSamplingDataPointsFilter<float>;
00098 template struct FixStepSamplingDataPointsFilter<double>;
00099