]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/manualPaint/baseFilterManualPaint.cpp
f326ff525e2820fe53208d728d9111e392ad1b56
[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         _IMManager = new ImageMManager();
30         _IMManager->CleanModifiedRegion();
31         _graylevel = 0.0;
32         _2D3D = 1; // 0 2D             ,   1 true 3D
33         _direction = 0; // 1 XZ             ,   0 YZ            ,   2 XY
34         _minX = 0;
35         _minY = 0;
36         _minZ = 0;
37         _maxX = 0;
38         _maxY = 0;
39         _maxZ = 0;
40
41         _pMinX = 0;
42         _pMinY = 0;
43         _pMinZ = 0;
44         _pMaxX = 0;
45         _pMaxY = 0;
46         _pMaxZ = 0;
47 }
48
49 //---------------------------------------------------------------------------
50 baseFilterManualPaint::~baseFilterManualPaint() // virtual
51 {
52 }
53
54 //---------------------------------------------------------------------------
55 void baseFilterManualPaint::Run() // virtual
56 {
57 }
58
59 //---------------------------------------------------------------------------
60 void baseFilterManualPaint::SetGrayLevel(double graylevel) {
61         _graylevel = graylevel;
62 }
63
64 //---------------------------------------------------------------------------
65 void baseFilterManualPaint::Set2D3D(int dim2D3D) {
66         _2D3D = dim2D3D;
67 }
68
69 //---------------------------------------------------------------------------
70 void baseFilterManualPaint::SetDirection(int direction) {
71         _direction = direction;
72 }
73
74 //---------------------------------------------------------------------------
75 void baseFilterManualPaint::SetPoint(int px, int py, int pz) {
76         _px = px;
77         _py = py;
78         _pz = pz;
79 }
80
81 //---------------------------------------------------------------------------
82 void baseFilterManualPaint::SetImage(vtkImageData *image) {
83         int ext[6];
84         _image = image;
85         _image->GetWholeExtent(ext);
86         _minX = 0;
87         _minY = 0;
88         _minZ = 0;
89         _maxX = ext[1] - ext[0];
90         _maxY = ext[3] - ext[2];
91         _maxZ = ext[5] - ext[4];
92 }
93
94 //---------------------------------------------------------------------------
95 void baseFilterManualPaint::ResetGeneralMinMax() {
96         _pMinX = 10000;
97         _pMinY = 10000;
98         _pMinZ = 10000;
99         _pMaxX = -10000;
100         _pMaxY = -10000;
101         _pMaxZ = -10000;
102 }
103
104 //---------------------------------------------------------------------------
105 void baseFilterManualPaint::SetGeneralMinMax(int minX, int maxX, int minY,
106                 int maxY, int minZ, int maxZ) {
107         if (_pMinX > minX) {
108                 _pMinX = minX;
109         }
110
111         if (_pMinY > minY) {
112                 _pMinY = minY;
113         }
114
115         if (_pMinZ > minZ) {
116                 _pMinZ = minZ;
117         }
118
119         if (_pMaxX < maxX) {
120                 _pMaxX = maxX;
121         }
122
123         if (_pMaxY < maxY) {
124                 _pMaxY = maxY;
125         }
126
127         if (_pMaxZ < maxZ) {
128                 _pMaxZ = maxZ;
129         }
130
131 }
132
133 //---------------------------------------------------------------------------
134 void baseFilterManualPaint::GetScalarRange(double * range) {
135         range = this->_image->GetScalarRange();
136 }
137
138 ImageMManager* baseFilterManualPaint::GetImageMManager() {
139         return (this->_IMManager);
140 } //DFCH
141 void baseFilterManualPaint::CleanImageMManager() {
142         this->_IMManager->CleanModifiedRegion();
143 } //DFCH
144