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
00040 template<typename T>
00041 PointMatcher<T>::Inspector::Inspector()
00042 {}
00043
00045 template<typename T>
00046 PointMatcher<T>::Inspector::Inspector(const std::string& className, const ParametersDoc paramsDoc, const Parameters& params):
00047 Parametrizable(className,paramsDoc,params)
00048 {}
00049
00051 template<typename T>
00052 PointMatcher<T>::Inspector::~Inspector()
00053 {}
00054
00056 template<typename T>
00057 void PointMatcher<T>::Inspector::init()
00058 {}
00059
00060
00061
00063 template<typename T>
00064 void PointMatcher<T>::Inspector::addStat(const std::string& name, double data)
00065 {}
00066
00068 template<typename T>
00069 void PointMatcher<T>::Inspector::dumpStats(std::ostream& stream)
00070 {}
00071
00073 template<typename T>
00074 void PointMatcher<T>::Inspector::dumpStatsHeader(std::ostream& stream)
00075 {}
00076
00077
00078
00080 template<typename T>
00081 void PointMatcher<T>::Inspector::dumpIteration(const size_t iterationNumber, const TransformationParameters& parameters, const DataPoints& filteredReference, const DataPoints& reading, const Matches& matches, const OutlierWeights& outlierWeights, const TransformationCheckers& transformationCheckers)
00082 {}
00083
00085 template<typename T>
00086 void PointMatcher<T>::Inspector::finish(const size_t iterationCount)
00087 {}
00088
00089 template struct PointMatcher<float>::Inspector;
00090 template struct PointMatcher<double>::Inspector;