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
00036 #include "CutAtDescriptorThreshold.h"
00037
00038
00039
00040 template<typename T>
00041 CutAtDescriptorThresholdDataPointsFilter<T>::CutAtDescriptorThresholdDataPointsFilter(const Parameters& params):
00042 PointMatcher<T>::DataPointsFilter("CutAtDescriptorThresholdDataPointsFilter",
00043 CutAtDescriptorThresholdDataPointsFilter::availableParameters(), params),
00044 descName(Parametrizable::get<std::string>("descName")),
00045 useLargerThan(Parametrizable::get<bool>("useLargerThan")),
00046 threshold(Parametrizable::get<T>("threshold"))
00047 {
00048 }
00049
00050
00051 template<typename T>
00052 typename PointMatcher<T>::DataPoints
00053 CutAtDescriptorThresholdDataPointsFilter<T>::filter(const DataPoints& input)
00054 {
00055 DataPoints output(input);
00056 inPlaceFilter(output);
00057 return output;
00058 }
00059
00060
00061 template<typename T>
00062 void CutAtDescriptorThresholdDataPointsFilter<T>::inPlaceFilter(
00063 DataPoints& cloud)
00064 {
00065
00066 if (!cloud.descriptorExists(descName))
00067 {
00068 throw InvalidField("CutAtDescriptorThresholdDataPointsFilter: Error, field not found in descriptors.");
00069 }
00070
00071 const int nbPointsIn = cloud.features.cols();
00072 typename DataPoints::View values = cloud.getDescriptorViewByName(descName);
00073
00074
00075 int j = 0;
00076 if (useLargerThan)
00077 {
00078 for (int i = 0; i < nbPointsIn; ++i)
00079 {
00080 const T value(values(0,i));
00081 if (value <= threshold)
00082 {
00083 cloud.setColFrom(j, cloud, i);
00084 ++j;
00085 }
00086 }
00087 }
00088 else
00089 {
00090 for (int i = 0; i < nbPointsIn; ++i)
00091 {
00092 const T value(values(0,i));
00093 if (value >= threshold)
00094 {
00095 cloud.setColFrom(j, cloud, i);
00096 ++j;
00097 }
00098 }
00099 }
00100 cloud.conservativeResize(j);
00101 }
00102
00103 template struct CutAtDescriptorThresholdDataPointsFilter<float>;
00104 template struct CutAtDescriptorThresholdDataPointsFilter<double>;