]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/manualPaint/baseFilterManualPaint.cpp
3941e84f2b70fc06b6cf214ced36d1b929cff418
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / manualPaint / baseFilterManualPaint.cpp
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 #include "baseFilterManualPaint.h"
27
28 baseFilterManualPaint::baseFilterManualPaint() 
29 {
30         _IMManager = new ImageMManager();
31         _IMManager->CleanModifiedRegion();
32         _graylevel      = 0.0;
33         _2D3D           = 1; // 0 2D             ,   1 true 3D
34         _direction      = 0; // 1 XZ             ,   0 YZ            ,   2 XY
35         _image          = NULL;
36         _image2         = NULL;
37         _minX           = 0;
38         _minY           = 0;
39         _minZ           = 0;
40         _maxX           = 0;
41         _maxY           = 0;
42         _maxZ           = 0;
43         _pMinX          = 0;
44         _pMinY          = 0;
45         _pMinZ          = 0;
46         _pMaxX          = 0;
47         _pMaxY          = 0;
48         _pMaxZ          = 0;
49         _RangeMin       = 0;
50         _RangeMax       = 6000;
51 }
52
53 //---------------------------------------------------------------------------
54 baseFilterManualPaint::~baseFilterManualPaint() // virtual
55 {
56 }
57
58 //---------------------------------------------------------------------------
59 void baseFilterManualPaint::Run() // virtual
60 {
61 }
62
63 //---------------------------------------------------------------------------
64 void baseFilterManualPaint::SetGrayLevel(double graylevel) 
65 {
66         _graylevel = graylevel;
67 }
68
69 //---------------------------------------------------------------------------
70 void baseFilterManualPaint::Set2D3D(int dim2D3D) 
71 {
72         _2D3D = dim2D3D;
73 }
74
75 //---------------------------------------------------------------------------
76 void baseFilterManualPaint::SetDirection(int direction) 
77 {
78         _direction = direction;
79 }
80
81 //---------------------------------------------------------------------------
82 void baseFilterManualPaint::SetPoint(int px, int py, int pz) 
83 {
84         _px = px;
85         _py = py;
86         _pz = pz;
87 }
88
89 //---------------------------------------------------------------------------
90 void baseFilterManualPaint::SetImages(vtkImageData *image, vtkImageData *image2) 
91 {
92         _image  = image;
93         _image2 = image2;
94         int ext[6];
95         _image->GetWholeExtent(ext);
96         _minX = 0;
97         _minY = 0;
98         _minZ = 0;
99         if (_image2!=NULL)
100         {
101                 int extB[6];
102                 _image2->GetWholeExtent(extB);
103                 _maxX = std::min( ext[1]-ext[0] , extB[1]-extB[0] );
104                 _maxY = std::min( ext[3]-ext[2] , extB[3]-extB[2] );
105                 _maxZ = std::min( ext[5]-ext[4] , extB[5]-extB[4] );
106         } else {
107                 _maxX = ext[1]-ext[0];
108                 _maxY = ext[3]-ext[2];
109                 _maxZ = ext[5]-ext[4];
110         } // if
111
112         _OneColumn      = 1;
113         _OneLine        = _maxX+1;
114         _OnePlane       = (_maxX+1)*(_maxY+1);
115 }
116
117
118 //---------------------------------------------------------------------------
119 void baseFilterManualPaint::ResetGeneralMinMax() 
120 {
121         _pMinX = 10000;
122         _pMinY = 10000;
123         _pMinZ = 10000;
124         _pMaxX = -10000;
125         _pMaxY = -10000;
126         _pMaxZ = -10000;
127 }
128
129 //---------------------------------------------------------------------------
130 void baseFilterManualPaint::SetGeneralMinMax(int minX, int maxX, int minY,
131                 int maxY, int minZ, int maxZ) 
132 {
133         if (_pMinX > minX) { _pMinX = minX; }
134         if (_pMinY > minY) { _pMinY = minY; }
135         if (_pMinZ > minZ) { _pMinZ = minZ; }
136         if (_pMaxX < maxX) { _pMaxX = maxX; }
137         if (_pMaxY < maxY) { _pMaxY = maxY; }
138         if (_pMaxZ < maxZ) { _pMaxZ = maxZ; }
139 }
140
141 //---------------------------------------------------------------------------
142 void baseFilterManualPaint::GetScalarRange(double * range) 
143 {
144         range = this->_image->GetScalarRange();
145 }
146
147 //---------------------------------------------------------------------------
148 ImageMManager* baseFilterManualPaint::GetImageMManager() 
149 {
150         return (this->_IMManager);
151 } //DFCH
152
153 //---------------------------------------------------------------------------
154 void baseFilterManualPaint::CleanImageMManager() 
155 {
156         this->_IMManager->CleanModifiedRegion();
157 } //DFCH
158
159 //---------------------------------------------------------------------------
160 void baseFilterManualPaint::SetRangeMin(int min) 
161 {
162         _RangeMin = min;
163 }
164
165 //---------------------------------------------------------------------------
166 void baseFilterManualPaint::SetRangeMax(int max) 
167 {
168         _RangeMax = max;
169 }
170
171 //---------------------------------------------------------------------------
172 int baseFilterManualPaint::GetRangeMin() 
173 {
174         return _RangeMin;
175 }
176
177 //---------------------------------------------------------------------------
178 int baseFilterManualPaint::GetRangeMax() 
179 {
180         return _RangeMax;
181 }
182