Isis 3 Programmer Reference
GaussianStretch.h
1#ifndef GaussianStretch_h
2#define GaussianStretch_h
8/* SPDX-License-Identifier: CC0-1.0 */
9
10#include "Statistics.h"
11#include "Histogram.h"
12#include "Stretch.h"
13#include "IException.h"
14#include "Constants.h"
15
16namespace Isis {
36 public:
37 GaussianStretch(Histogram &histogram, const double mean = 0.0, const double standardDeviation = 1.0) ;
39
40 double Map(const double value) const;
41 private:
44 };
45};
46
47#endif
Gaussian stretch class.
Stretch p_stretch
Value of the mean.
double Map(const double value) const
Maps an input value to an output value based on the gaussian distribution.
GaussianStretch(Histogram &histogram, const double mean=0.0, const double standardDeviation=1.0)
Constructs a gaussian stretch object.
Container of a cube histogram.
Definition Histogram.h:74
This class is used to accumulate statistics on double arrays.
Definition Statistics.h:94
Pixel value mapper.
Definition Stretch.h:58
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16