]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/manualPaint/baseFilterManualPaint.cpp
#3207
[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
44         _pMinX          = 0;
45         _pMinY          = 0;
46         _pMinZ          = 0;
47         _pMaxX          = 0;
48         _pMaxY          = 0;
49         _pMaxZ          = 0;
50
51         _RangeMin       = 0;
52         _RangeMax       = 6000;
53 }
54
55 //---------------------------------------------------------------------------
56 baseFilterManualPaint::~baseFilterManualPaint() // virtual
57 {
58 }
59
60 //---------------------------------------------------------------------------
61 void baseFilterManualPaint::Run() // virtual
62 {
63 }
64
65 //---------------------------------------------------------------------------
66 void baseFilterManualPaint::SetGrayLevel(double graylevel) {
67         _graylevel = graylevel;
68 }
69
70 //---------------------------------------------------------------------------
71 void baseFilterManualPaint::Set2D3D(int dim2D3D) {
72         _2D3D = dim2D3D;
73 }
74
75 //---------------------------------------------------------------------------
76 void baseFilterManualPaint::SetDirection(int direction) {
77         _direction = direction;
78 }
79
80 //---------------------------------------------------------------------------
81 void baseFilterManualPaint::SetPoint(int px, int py, int pz) {
82         _px = px;
83         _py = py;
84         _pz = pz;
85 }
86
87 //---------------------------------------------------------------------------
88 void baseFilterManualPaint::SetImages(vtkImageData *image, vtkImageData *image2) 
89 {
90         _image  = image;
91         _image2 = image2;
92
93         int ext[6];
94 //EED 2017-01-01 Migration VTK7
95 #if VTK_MAJOR_VERSION <= 5
96         _image->GetWholeExtent(ext);
97 #else
98         _image->GetExtent(ext);
99 #endif
100         _minX = 0;
101         _minY = 0;
102         _minZ = 0;
103
104         if (_image2!=NULL)
105         {
106                 int extB[6];
107
108 //EED 2017-01-01 Migration VTK7
109 #if VTK_MAJOR_VERSION <= 5
110                 _image2->GetWholeExtent(extB);
111 #else
112                 _image2->GetExtent(extB);
113 #endif
114
115                 _maxX = std::min( ext[1]-ext[0] , extB[1]-extB[0] );
116                 _maxY = std::min( ext[3]-ext[2] , extB[3]-extB[2] );
117                 _maxZ = std::min( ext[5]-ext[4] , extB[5]-extB[4] );
118         } else {
119                 _maxX = ext[1]-ext[0];
120                 _maxY = ext[3]-ext[2];
121                 _maxZ = ext[5]-ext[4];
122         } // if
123 }
124
125
126 //---------------------------------------------------------------------------
127 void baseFilterManualPaint::ResetGeneralMinMax() {
128         _pMinX = 10000;
129         _pMinY = 10000;
130         _pMinZ = 10000;
131         _pMaxX = -10000;
132         _pMaxY = -10000;
133         _pMaxZ = -10000;
134 }
135
136 //---------------------------------------------------------------------------
137 void baseFilterManualPaint::SetGeneralMinMax(int minX, int maxX, int minY,
138                 int maxY, int minZ, int maxZ) {
139         if (_pMinX > minX) {
140                 _pMinX = minX;
141         }
142
143         if (_pMinY > minY) {
144                 _pMinY = minY;
145         }
146
147         if (_pMinZ > minZ) {
148                 _pMinZ = minZ;
149         }
150
151         if (_pMaxX < maxX) {
152                 _pMaxX = maxX;
153         }
154
155         if (_pMaxY < maxY) {
156                 _pMaxY = maxY;
157         }
158
159         if (_pMaxZ < maxZ) {
160                 _pMaxZ = maxZ;
161         }
162
163 }
164
165 //---------------------------------------------------------------------------
166 void baseFilterManualPaint::GetScalarRange(double * range) {
167         range = this->_image->GetScalarRange();
168 }
169
170 //---------------------------------------------------------------------------
171 ImageMManager* baseFilterManualPaint::GetImageMManager() {
172         return (this->_IMManager);
173 } //DFCH
174
175 //---------------------------------------------------------------------------
176 void baseFilterManualPaint::CleanImageMManager() {
177         this->_IMManager->CleanModifiedRegion();
178 } //DFCH
179
180
181
182
183 //---------------------------------------------------------------------------
184 void baseFilterManualPaint::SetRangeMin(int min) 
185 {
186         _RangeMin = min;
187 }
188
189 //---------------------------------------------------------------------------
190 void baseFilterManualPaint::SetRangeMax(int max) 
191 {
192         _RangeMax = max;
193 }
194
195 //---------------------------------------------------------------------------
196 int baseFilterManualPaint::GetRangeMin() 
197 {
198         return _RangeMin;
199 }
200
201 //---------------------------------------------------------------------------
202 int baseFilterManualPaint::GetRangeMax() 
203 {
204         return _RangeMax;
205 }
206
207
208
209