]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/ThresholdImageView/ThresholdImageView.h
Feature #1606 Add a new entry to ColorLayerImageView to select the fitting mode betwe...
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / ThresholdImageView / ThresholdImageView.h
1
2
3
4 /**
5  *  \file 
6  *  \brief Class ThresholdImageView . 
7  */
8
9 /**
10  * \class ThresholdImageView
11  * \brief 
12  */
13  
14 #ifndef __ThresholdImageView_h__
15 #define __ThresholdImageView_h__
16
17 #include "LayerImageBase.h"
18
19
20 class  ThresholdImageView : public LayerImageBase
21   {
22   public: 
23           ThresholdImageView( );
24           ~ThresholdImageView();
25           void SetBaseColor(double r, double g, double b);
26           void SetminMaxValue(int min, int max);
27           
28   private:
29           double                                _baseColorR;
30           double                                _baseColorG;
31           double                                _baseColorB;
32           double                                _minValue;
33           double                                _maxValue;
34
35                 virtual void ConfigLookupTable();
36
37   protected:
38  };
39
40 #endif
41