]> 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(int px, int py, int pz) // 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 /* //EED 2020-04-28  BORRAME Change to local variables to use with openmp
88 //---------------------------------------------------------------------------
89 void baseFilterManualPaint::SetPoint(int px, int py, int pz) 
90 {
91         _px = px;
92         _py = py;
93         _pz = pz;
94 }
95 */
96  
97 //---------------------------------------------------------------------------
98 void baseFilterManualPaint::SetImages(vtkImageData *image, vtkImageData *image2) 
99 {
100         _image  = image;
101         _image2 = image2;
102         int ext[6];
103 //EED 2017-01-01 Migration VTK7
104 #if VTK_MAJOR_VERSION <= 5
105         _image->GetWholeExtent(ext);
106 #else
107         _image->GetExtent(ext);
108 #endif
109         _minX = 0;
110         _minY = 0;
111         _minZ = 0;
112         if (_image2!=NULL)
113         {
114                 int extB[6];
115
116 //EED 2017-01-01 Migration VTK7
117 #if VTK_MAJOR_VERSION <= 5
118                 _image2->GetWholeExtent(extB);
119 #else
120                 _image2->GetExtent(extB);
121 #endif
122
123                 _dimX = std::min( ext[1]-ext[0]+1 , extB[1]-extB[0]+1 );
124                 _dimY = std::min( ext[3]-ext[2]+1 , extB[3]-extB[2]+1 );
125                 _dimZ = std::min( ext[5]-ext[4]+1 , extB[5]-extB[4]+1 );
126         } else {
127                 _dimX = ext[1]-ext[0]+1;
128                 _dimY = ext[3]-ext[2]+1;
129                 _dimZ = ext[5]-ext[4]+1;
130         } // if
131
132         _OneColumn      = 1;
133         _OneLine        = _dimX;
134         _OnePlane       = _dimX*_dimY;
135 }
136
137
138
139 /*//EED 2020-04-28  BORRAME Change to local variables to use with openmp
140
141 //---------------------------------------------------------------------------
142 void baseFilterManualPaint::ResetGeneralMinMax() 
143 {
144         _pMinX = 10000;
145         _pMinY = 10000;
146         _pMinZ = 10000;
147         _pMaxX = -10000;
148         _pMaxY = -10000;
149         _pMaxZ = -10000;
150 }
151
152 //---------------------------------------------------------------------------
153 void baseFilterManualPaint::SetGeneralMinMax(int minX, int maxX, int minY,
154                 int maxY, int minZ, int maxZ) 
155 {
156         if (_pMinX > minX) { _pMinX = minX; }
157         if (_pMinY > minY) { _pMinY = minY; }
158         if (_pMinZ > minZ) { _pMinZ = minZ; }
159         if (_pMaxX < maxX) { _pMaxX = maxX; }
160         if (_pMaxY < maxY) { _pMaxY = maxY; }
161         if (_pMaxZ < maxZ) { _pMaxZ = maxZ; }
162 }
163 */
164
165
166 //---------------------------------------------------------------------------
167 void baseFilterManualPaint::GetScalarRange(double * range) 
168 {
169         range = this->_image->GetScalarRange();
170 }
171
172 //---------------------------------------------------------------------------
173 ImageMManager* baseFilterManualPaint::GetImageMManager() 
174 {
175         return (this->_IMManager);
176 } //DFCH
177
178 //---------------------------------------------------------------------------
179 void baseFilterManualPaint::CleanImageMManager() 
180 {
181         this->_IMManager->CleanModifiedRegion();
182 } //DFCH
183
184 //---------------------------------------------------------------------------
185 void baseFilterManualPaint::SetRangeMin(int min) 
186 {
187         _RangeMin = min;
188 }
189
190 //---------------------------------------------------------------------------
191 void baseFilterManualPaint::SetRangeMax(int max) 
192 {
193         _RangeMax = max;
194 }
195
196 //---------------------------------------------------------------------------
197 int baseFilterManualPaint::GetRangeMin() 
198 {
199         return _RangeMin;
200 }
201
202 //---------------------------------------------------------------------------
203 int baseFilterManualPaint::GetRangeMax() 
204 {
205         return _RangeMax;
206 }
207