USGS

Isis 3.0 Object Programmers' Reference

Home

GaussianStretch.h
Go to the documentation of this file.
1 
23 #ifndef GaussianStretch_h
24 #define GaussianStretch_h
25 
26 #include "Statistics.h"
27 #include "Histogram.h"
28 #include "Stretch.h"
29 #include "IException.h"
30 #include "Constants.h"
31 
32 namespace Isis {
52  public:
53  GaussianStretch(Histogram &histogram, const double mean = 0.0, const double standardDeviation = 1.0) ;
54  ~GaussianStretch() {};
55 
56  double Map(const double value) const;
57  private:
60  };
61 };
62 
63 #endif