FAST  3.2.0
Framework for Heterogeneous Medical Image Computing and Visualization
ScaleImage.hpp
Go to the documentation of this file.
1 #ifndef SCALE_IMAGE_HPP
2 #define SCALE_IMAGE_HPP
3 
4 #include "FAST/ProcessObject.hpp"
5 
6 namespace fast {
7 
13 class FAST_EXPORT ScaleImage : public ProcessObject {
15  public:
16  void setLowestValue(float value);
17  void setHighestValue(float value);
18  private:
19  ScaleImage();
20  void execute();
21 
22  float mLow, mHigh;
23 };
24 
25 } // end namespace fast
26 
27 #endif
fast
Definition: AffineTransformation.hpp:7
FAST_OBJECT
#define FAST_OBJECT(className)
Definition: Object.hpp:9
fast::ScaleImage
Definition: ScaleImage.hpp:13
ProcessObject.hpp
fast::ProcessObject
Definition: ProcessObject.hpp:22