]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/ThresholdImageView/ColorLayerImageView.h
#2651 creaMaracasVisu Feature New Normal - Color Layer: Transparent Base, Refresh
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / ThresholdImageView / ColorLayerImageView.h
1 /*# ---------------------------------------------------------------------
2 #
3 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
4 #                        pour la Sant�)
5 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
6 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
7 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
8 #
9 #  This software is governed by the CeCILL-B license under French law and
10 #  abiding by the rules of distribution of free software. You can  use,
11 #  modify and/ or redistribute the software under the terms of the CeCILL-B
12 #  license as circulated by CEA, CNRS and INRIA at the following URL
13 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
14 #  or in the file LICENSE.txt.
15 #
16 #  As a counterpart to the access to the source code and  rights to copy,
17 #  modify and redistribute granted by the license, users are provided only
18 #  with a limited warranty  and the software's author,  the holder of the
19 #  economic rights,  and the successive licensors  have only  limited
20 #  liability.
21 #
22 #  The fact that you are presently reading this means that you have had
23 #  knowledge of the CeCILL-B license and that you accept its terms.
24 # ------------------------------------------------------------------------ */
25
26 /**
27  *  \file 
28  *  \brief Class ThresholdImageView . 
29  */
30
31 /**
32  * \class ThresholdImageView
33  * \brief 
34  */
35  
36 #ifndef __ColorLayerImageView_h__
37 #define __ColorLayerImageView_h__
38
39 #include "LayerImageBase.h"
40
41
42 class  ColorLayerImageView : public LayerImageBase
43   {
44   public: 
45           ColorLayerImageView( );
46           ~ColorLayerImageView( );
47           void SetSliceFixDynamic(bool fix_dynamic);
48           void SetX2(int x2);
49           void SetY2(int y2);
50           void SetZ2(int z2);
51           virtual int GetX();
52           virtual int GetY();
53           virtual int GetZ();
54           
55           /** 
56            * \brief  Each color is described by its RGB coordinates. Therefore, the vector should have the size of a multiple of 3 elements.
57            *
58            * \param base_color the base color vector.
59            */
60           void SetBaseColors(std::vector<double> & base_color);
61
62
63           void SetBaseTransparence(std::vector<double> & base_transparence);
64
65
66           /** 
67            * \brief  Returns the base color for a given index (first coordinate of the first color being 1, second coordinate of the first color being 2, etc.).
68            *
69            * \param index for which we would like to get the base color.
70            * \return The corresponding base color value.
71            */
72           double GetBaseColors(unsigned int index);
73           /** 
74            * \brief The boundaries include the extrema. There must be one more element in this vector than GetBaseColorNb.
75            *
76            * \param grey_level_boundary the grey level boundary vector.
77            */
78           void SetGreyLevelBoundaries(std::vector<double> & grey_level_boundary);
79           /** 
80            * \brief  Returns the grey level boundary for a given index.
81            *
82            * \param index for which we would like to get the grey level boundary.
83            * \return The corresponding grey level value.
84            */
85           double GetGreyLevelBoundaries(unsigned int index);
86           /** 
87            * \brief Sets the color type. True for plain color, false for gradient color. Default is false.
88            *
89            * \param color_type the color type
90            */
91           void SetPlainOrGradientColor(bool color_type);
92           /** 
93            * \brief  Returns the number of base colors.
94            *
95            * \return The number of base colors.
96            */
97           int GetBaseColorNb();
98
99
100                 void    FillColorTable(int start, int end, double r1, double g1, double b1, double r2, double g2, double b2, double t1, double t2);
101
102                 int     GrayLevel_TO_colorTableIndex( double VALUE );
103
104
105   private:
106
107           int _x2, _y2, _z2;
108           bool _fix_dynamic;
109           void SetDefaultGreyLevelBoundary();
110           void SetDefaultBaseColorAndGreyLevelBoundary();
111           virtual void ConfigLookupTable();
112      int maxColorsThresholdTable;
113
114
115           //! Range values in the colored image.
116           double _range[2];
117
118           //! Base colors for the overlaid image.
119           std::vector<double> _base_color;
120           //! Grey level boundaries.
121           std::vector<double> _grey_level_boundary;
122           //! Grey level boundaries.
123           std::vector<double> _transparence_level_boundary;
124           //! Color type (plain or gradient color).
125           bool _color_type;
126
127   protected:
128  };
129
130 #endif
131