/** * \file * \brief Class ThresholdImageView . */ /** * \class ThresholdImageView * \brief */ #ifndef __ThresholdImageView_h__ #define __ThresholdImageView_h__ #include "LayerImageBase.h" class ThresholdImageView : public LayerImageBase { public: ThresholdImageView( ); ~ThresholdImageView(); void SetBaseColor(double r, double g, double b); void SetminMaxValue(int min, int max); private: double _baseColorR; double _baseColorG; double _baseColorB; double _minValue; double _maxValue; virtual void ConfigLookupTable(); protected: }; #endif