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