]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/ThresholdImageView/ColorLayerImageView.h
#2520 creaMaracasVisu - Bug New Normal - Color Layer with double images
[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            * \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.).
63            *
64            * \param index for which we would like to get the base color.
65            * \return The corresponding base color value.
66            */
67           double GetBaseColors(unsigned int index);
68           /** 
69            * \brief The boundaries include the extrema. There must be one more element in this vector than GetBaseColorNb.
70            *
71            * \param grey_level_boundary the grey level boundary vector.
72            */
73           void SetGreyLevelBoundaries(std::vector<double> & grey_level_boundary);
74           /** 
75            * \brief  Returns the grey level boundary for a given index.
76            *
77            * \param index for which we would like to get the grey level boundary.
78            * \return The corresponding grey level value.
79            */
80           double GetGreyLevelBoundaries(unsigned int index);
81           /** 
82            * \brief Sets the color type. True for plain color, false for gradient color. Default is false.
83            *
84            * \param color_type the color type
85            */
86           void SetPlainOrGradientColor(bool color_type);
87           /** 
88            * \brief  Returns the number of base colors.
89            *
90            * \return The number of base colors.
91            */
92           int GetBaseColorNb();
93
94
95                 void FillColorTable(int start, int end, double r1, double g1, double b1, double r2, double g2, double b2);
96
97
98   private:
99
100           int _x2, _y2, _z2;
101           bool _fix_dynamic;
102           void SetDefaultGreyLevelBoundary();
103           void SetDefaultBaseColorAndGreyLevelBoundary();
104           virtual void ConfigLookupTable();
105
106           //! Range values in the colored image.
107           double _range[2];
108
109           //! Base colors for the overlaid image.
110           std::vector<double> _base_color;
111           //! Grey level boundaries.
112           std::vector<double> _grey_level_boundary;
113           //! Color type (plain or gradient color).
114           bool _color_type;
115
116   protected:
117  };
118
119 #endif
120