18 #ifndef _GAZEBO_GAUSSIAN_NOISE_MODEL_HH_ 19 #define _GAZEBO_GAUSSIAN_NOISE_MODEL_HH_ 32 class CompositorInstance;
37 class GaussianNoiseCompositorListener;
52 public:
virtual void Load(sdf::ElementPtr _sdf);
55 public:
virtual void Fini();
58 public:
double ApplyImpl(
double _in);
62 public:
double GetMean()
const;
66 public:
double GetStdDev()
const;
70 public:
double GetBias()
const;
73 public:
virtual void Print(std::ostream &_out)
const;
105 public:
virtual void Load(sdf::ElementPtr _sdf);
108 public:
virtual void Fini();
114 public:
virtual void Print(std::ostream &_out)
const;
120 public: boost::shared_ptr<GaussianNoiseCompositorListener>
Forward declarations for the common classes.
Definition: Animation.hh:33
Definition: GaussianNoiseModel.hh:96
boost::shared_ptr< GaussianNoiseCompositorListener > gaussianNoiseCompositorListener
Gaussian noise compositor listener.
Definition: GaussianNoiseModel.hh:121
bool quantized
True if the type is GAUSSIAN_QUANTIZED.
Definition: GaussianNoiseModel.hh:91
Definition: JointMaker.hh:41
double bias
If type starts with GAUSSIAN, the bias we'll add.
Definition: GaussianNoiseModel.hh:84
double precision
If type==GAUSSIAN_QUANTIZED, the precision to which the output signal is rounded. ...
Definition: GaussianNoiseModel.hh:88
Gaussian noise class.
Definition: GaussianNoiseModel.hh:43
double mean
If type starts with GAUSSIAN, the mean of the distribution from which we sample when adding noise...
Definition: GaussianNoiseModel.hh:77
double stdDev
If type starts with GAUSSIAN, the standard deviation of the distribution from which we sample when ad...
Definition: GaussianNoiseModel.hh:81
#define GAZEBO_VISIBLE
Use to represent "symbol visible" if supported.
Definition: system.hh:59
boost::shared_ptr< Camera > CameraPtr
Definition: RenderTypes.hh:88
Ogre::CompositorInstance * gaussianNoiseInstance
Gaussian noise compositor.
Definition: GaussianNoiseModel.hh:117
Noise models for sensor output signals.
Definition: Noise.hh:55