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 #pragma once
00036
00037 #include "PointMatcher.h"
00038
00040 template<typename T>
00041 struct SimpleSensorNoiseDataPointsFilter: public PointMatcher<T>::DataPointsFilter
00042 {
00043 typedef PointMatcherSupport::Parametrizable Parametrizable;
00044 typedef PointMatcherSupport::Parametrizable P;
00045 typedef Parametrizable::Parameters Parameters;
00046 typedef Parametrizable::ParameterDoc ParameterDoc;
00047 typedef Parametrizable::ParametersDoc ParametersDoc;
00048 typedef Parametrizable::InvalidParameter InvalidParameter;
00049
00050 typedef typename PointMatcher<T>::Matrix Matrix;
00051 typedef typename PointMatcher<T>::DataPoints DataPoints;
00052 typedef typename PointMatcher<T>::DataPoints::InvalidField InvalidField;
00053
00054 inline static const std::string description()
00055 {
00056 return "Add a 1D descriptor named <sensorNoise> that would represent the noise radius expressed in meter based on SICK LMS specifications \\cite{Pomerleau2012Noise}.";
00057 }
00058
00059 inline static const ParametersDoc availableParameters()
00060 {
00061 return {
00062 {"sensorType", "Type of the sensor used. Choices: 0=Sick LMS-1xx, 1=Hokuyo URG-04LX, 2=Hokuyo UTM-30LX, 3=Kinect/Xtion", "0", "0", "2147483647", &P::Comp<unsigned>},
00063 {"gain", "If the point cloud is coming from an untrusty source, you can use the gain to augment the uncertainty", "1", "1", "inf", &P::Comp<T>}
00064 };
00065 }
00066
00067 const unsigned sensorType;
00068 const T gain;
00069
00071 SimpleSensorNoiseDataPointsFilter(const Parameters& params = Parameters());
00072
00073 virtual DataPoints filter(const DataPoints& input);
00074 virtual void inPlaceFilter(DataPoints& cloud);
00075
00076 private:
00081 Matrix computeLaserNoise(const T minRadius, const T beamAngle, const T beamConst, const Matrix& features);
00082
00083 };