]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/manualPaint/ManualPaintModel.cpp
#3418 creaMaracasVisu Feature New Normal - ManualPaint_model with openmp
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / manualPaint / ManualPaintModel.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 "ManualPaintModel.h"
27
28 ManualPaintModel::ManualPaintModel() 
29 {
30         _active                                 = true;
31         _tool                                   = 0; // 0 pencil         ,   1 fill
32         _brushfilter                    = new BrushFilter();
33         _fillfilter                     = new FillFilter();
34         _imageUndoRedo                  = new ImageUndoRedo();
35 //EED 2020-04-28  BORRAME Change to local variables to use with openmp
36 //      _imageUndoRedo_visited  = new ImageUndoRedo();
37 }
38
39 //---------------------------------------------------------------------------
40 ManualPaintModel::~ManualPaintModel() 
41 {
42         delete _brushfilter;
43         delete _fillfilter;
44 }
45
46
47 //---------------------------------------------------------------------------
48 void ManualPaintModel::SetActive( bool active )
49 {
50   _active = active;
51 }
52
53 //---------------------------------------------------------------------------
54 void ManualPaintModel::PaintImage(int px, int py, int pz) 
55 {
56   if (_active==true)
57   {
58         if (_tool == 0) 
59         {
60                 _brushfilter->SetPoint(px, py, pz);
61                 _brushfilter->Run();
62         } // _tool 2
63         if (_tool == 1) 
64         {
65                 _fillfilter->SetPoint(px, py, pz);
66                 _fillfilter->Run();
67         } // _tool 1
68   } // _active
69 }
70
71 //---------------------------------------------------------------------------
72 void ManualPaintModel::SetTool(int tool) 
73 {
74         _tool = tool;
75 }
76
77 //---------------------------------------------------------------------------
78 void ManualPaintModel::Set2D3D(int dim2D3D) 
79 {
80         _brushfilter -> Set2D3D(dim2D3D);
81         _fillfilter  -> Set2D3D(dim2D3D);
82 }
83
84 //---------------------------------------------------------------------------
85 void ManualPaintModel::SetImages(vtkImageData *image,vtkImageData *image2) 
86 {
87         if (image!=NULL)
88         {
89                 _brushfilter -> SetImages(image,image2);
90                 _fillfilter  -> SetImages(image,image2);
91                 if (image2!=NULL)
92                 {
93                         _imageUndoRedo->SetImage(image2);
94                 } else {
95                         _imageUndoRedo->SetImage(image);
96                 }
97 //EED 2020-04-28  BORRAME Change to local variables to use with openmp
98 //              _imageUndoRedo_visited->SetImage( _fillfilter->GetAuxImageFill() );
99         } else {
100                 printf("EED Warning image=NULL in ManualPaintModel::SetImage(image)\n ");
101         }
102 }
103
104 //---------------------------------------------------------------------------
105 void ManualPaintModel::SetGrayLevel(double graylevel) 
106 {
107         _brushfilter->SetGrayLevel(graylevel);
108         _fillfilter->SetGrayLevel(graylevel);
109 }
110
111 //---------------------------------------------------------------------------
112 void ManualPaintModel::SetRangeMin(int min) 
113 {
114         _brushfilter->SetRangeMin(min);
115         _fillfilter->SetRangeMin(min);
116 }
117
118 //---------------------------------------------------------------------------
119 void ManualPaintModel::SetRangeMax(int max) 
120 {
121         _brushfilter->SetRangeMax(max);
122         _fillfilter->SetRangeMax(max);
123 }
124
125 //---------------------------------------------------------------------------
126 void ManualPaintModel::SetDirection(int direction) 
127 {
128         _brushfilter->SetDirection(direction);
129         _fillfilter->SetDirection(direction);
130 }
131
132 //---------------------------------------------------------------------------
133 void ManualPaintModel::SetBrushSize(int brushsize) 
134 {
135         _brushfilter->SetBrushSize(brushsize);
136 }
137
138 //---------------------------------------------------------------------------
139 void ManualPaintModel::SetBrushForm(int brushform) 
140 {
141         _brushfilter->SetBrushForm(brushform);
142 }
143
144 //---------------------------------------------------------------------------
145 void ManualPaintModel::SetToleranceFill(double tolerancefill) 
146 {
147         _fillfilter->SetToleranceFill(tolerancefill);
148 }
149
150 //---------------------------------------------------------------------------
151 void ManualPaintModel::SetDistanceFill(int distancefill) 
152 {
153         _fillfilter->SetDistanceFill(distancefill);
154 }
155
156 //---------------------------------------------------------------------------
157 void ManualPaintModel::GetScalarRange(double * range) 
158 {
159         _fillfilter->GetScalarRange(range);
160 }
161
162 //---------------------------------------------------------------------------
163 void ManualPaintModel::SetUndoImage() 
164 {
165         ImageMManager* imMManager = NULL;
166         if (_tool == 0) 
167         {
168                 imMManager = this->_brushfilter->GetImageMManager();
169         } // if 0
170         if (_tool == 1) 
171         {
172                 imMManager = this->_fillfilter->GetImageMManager();
173         } // if 1
174         this->_imageUndoRedo                    -> SetURImages(imMManager);
175 //EED 2020-04-28  BORRAME Change to local variables to use with openmp
176 //      this->_imageUndoRedo_visited    -> SetURImages(imMManager);
177         this->_brushfilter                              -> CleanImageMManager();
178         this->_fillfilter                               -> CleanImageMManager();
179 }
180 //---------------------------------------------------------------------------
181
182 void ManualPaintModel::Undo() 
183 {
184         this->_imageUndoRedo->Undo();
185 //EED 2020-04-28  BORRAME Change to local variables to use with openmp
186 //      this->_imageUndoRedo_visited->Undo();
187 }
188
189 void ManualPaintModel::Redo() 
190 {
191         this->_imageUndoRedo->Redo();
192 //EED 2020-04-28  BORRAME Change to local variables to use with openmp
193 //      this->_imageUndoRedo_visited->Redo();
194 }
195
196
197 int ManualPaintModel::GetRestorBaseInitialPointX() 
198 {
199         return  this->_imageUndoRedo->GetRestorBaseInitialPointX();
200 }
201
202 int ManualPaintModel::GetRestorBaseInitialPointY() 
203 {
204         return  this->_imageUndoRedo->GetRestorBaseInitialPointY();
205 }
206
207 int ManualPaintModel::GetRestorBaseInitialPointZ() 
208 {
209         return  this->_imageUndoRedo->GetRestorBaseInitialPointZ();
210 }
211