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 "PointMatcher.h"
00037 #include "PointMatcherPrivate.h"
00038 #include <limits>
00039
00040 using namespace std;
00041
00043 template<typename T>
00044 PointMatcher<T>::OutlierFilter::OutlierFilter()
00045 {}
00046
00048 template<typename T>
00049 PointMatcher<T>::OutlierFilter::OutlierFilter(const std::string& className, const ParametersDoc paramsDoc, const Parameters& params):
00050 Parametrizable(className,paramsDoc,params)
00051 {}
00052
00054 template<typename T>
00055 PointMatcher<T>::OutlierFilter::~OutlierFilter()
00056 {}
00057
00058 template struct PointMatcher<float>::OutlierFilter;
00059 template struct PointMatcher<double>::OutlierFilter;
00060
00061
00063 template<typename T>
00064 typename PointMatcher<T>::OutlierWeights PointMatcher<T>::OutlierFilters::compute(
00065 const DataPoints& filteredReading,
00066 const DataPoints& filteredReference,
00067 const Matches& input)
00068 {
00069
00070 if (this->empty())
00071 {
00072
00073 OutlierWeights w(input.dists.rows(), input.dists.cols());
00074 for (int x = 0; x < w.cols(); ++x)
00075 {
00076 for (int y = 0; y < w.rows(); ++y)
00077 {
00078 if (input.dists(y, x) == numeric_limits<T>::infinity())
00079 w(y, x) = 0;
00080 else
00081 w(y, x) = 1;
00082 }
00083 }
00084 return w;
00085 }
00086 else
00087 {
00088
00089
00090 OutlierWeights w = (*this->begin())->compute(filteredReading, filteredReference, input);
00091
00092 if (this->size() > 1)
00093 {
00094 for (OutlierFiltersConstIt it = (this->begin() + 1); it != this->end(); ++it)
00095 {
00096 w = w.array() * (*it)->compute(filteredReading, filteredReference, input).array();
00097
00098 }
00099 }
00100
00101 return w;
00102 }
00103 }
00104
00105
00106
00107 template struct PointMatcher<float>::OutlierFilters;
00108 template struct PointMatcher<double>::OutlierFilters;