]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/manualPaint/baseFilterManualPaint.cpp
#2864 creaMaracasVisu Feature New Normal - Manual Paint , modifies external image...
[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         _image->GetWholeExtent(ext);
95         _minX = 0;
96         _minY = 0;
97         _minZ = 0;
98
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
113
114 //---------------------------------------------------------------------------
115 void baseFilterManualPaint::ResetGeneralMinMax() {
116         _pMinX = 10000;
117         _pMinY = 10000;
118         _pMinZ = 10000;
119         _pMaxX = -10000;
120         _pMaxY = -10000;
121         _pMaxZ = -10000;
122 }
123
124 //---------------------------------------------------------------------------
125 void baseFilterManualPaint::SetGeneralMinMax(int minX, int maxX, int minY,
126                 int maxY, int minZ, int maxZ) {
127         if (_pMinX > minX) {
128                 _pMinX = minX;
129         }
130
131         if (_pMinY > minY) {
132                 _pMinY = minY;
133         }
134
135         if (_pMinZ > minZ) {
136                 _pMinZ = minZ;
137         }
138
139         if (_pMaxX < maxX) {
140                 _pMaxX = maxX;
141         }
142
143         if (_pMaxY < maxY) {
144                 _pMaxY = maxY;
145         }
146
147         if (_pMaxZ < maxZ) {
148                 _pMaxZ = maxZ;
149         }
150
151 }
152
153 //---------------------------------------------------------------------------
154 void baseFilterManualPaint::GetScalarRange(double * range) {
155         range = this->_image->GetScalarRange();
156 }
157
158 //---------------------------------------------------------------------------
159 ImageMManager* baseFilterManualPaint::GetImageMManager() {
160         return (this->_IMManager);
161 } //DFCH
162
163 //---------------------------------------------------------------------------
164 void baseFilterManualPaint::CleanImageMManager() {
165         this->_IMManager->CleanModifiedRegion();
166 } //DFCH
167
168
169
170
171 //---------------------------------------------------------------------------
172 void baseFilterManualPaint::SetRangeMin(int min) 
173 {
174         _RangeMin = min;
175 }
176
177 //---------------------------------------------------------------------------
178 void baseFilterManualPaint::SetRangeMax(int max) 
179 {
180         _RangeMax = max;
181 }
182
183 //---------------------------------------------------------------------------
184 int baseFilterManualPaint::GetRangeMin() 
185 {
186         return _RangeMin;
187 }
188
189 //---------------------------------------------------------------------------
190 int baseFilterManualPaint::GetRangeMax() 
191 {
192         return _RangeMax;
193 }
194
195
196
197