]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/manualContour/manualViewRoi.cpp
0fd4501ec8eb8c6de9a720ed0dac0de90fc802b1
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / manualContour / manualViewRoi.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 "manualViewRoi.h"
27
28 // ----------------------------------------------------------------------------
29 // ----------------------------------------------------------------------------
30 // ----------------------------------------------------------------------------
31
32 manualViewRoi::manualViewRoi()
33 {
34         _sizePointsContour=5;
35 }
36 // ----------------------------------------------------------------------------
37 manualViewRoi::~manualViewRoi()
38 {
39 }
40
41
42 // ----------------------------------------------------------------------------
43 manualViewRoi * manualViewRoi :: Clone()
44 {
45         manualViewRoi * clone = new manualViewRoi();
46         CopyAttributesTo(clone);
47         return clone;
48 }
49
50 // ---------------------------------------------------------------------------
51
52 void manualViewRoi::CopyAttributesTo( manualViewRoi * cloneObject)
53 {
54         // Fathers object
55         manualViewBaseContour::CopyAttributesTo(cloneObject);
56 }
57
58 // ----------------------------------------------------------------------------
59 void manualViewRoi::RefreshContour() // virtual
60 {
61     unsigned int i,ii, np;
62     np  = GetNumberOfPoints( );
63 //EED01 
64         if ( np > 0)
65         {
66                 if (np>=2)
67                 {
68                         manualPoint     *mp;
69                         for( i = 0; i < np+1; i++ ) {
70                                 ii=i%np;
71                                 mp = _manContModel->GetManualPoint(ii);
72
73         //EEDx6
74                                 double XX=mp->GetX(),YY=mp->GetY(),ZZ=mp->GetZ();
75         //                      wxVtk2DBaseView *wxvtk2Dbasevie = (wxVtk2DBaseView*)this->GetWxVtkBaseView();
76         //                      wxvtk2Dbasevie->TransformCoordinate_spacing_ModelToView(XX,YY,ZZ);
77
78         //EED 27 sep 2007
79         //                      _pts->SetPoint(i, XX,YY,ZZ );
80                                 _pts->SetPoint(i, XX*_spc[0] , YY*_spc[1] , ZZ*_spc[2] );
81                         } //  rof
82
83                 } else {
84                                 _pts->SetPoint(0, 0 , 0 , 0);
85                                 _pts->SetPoint(1, 0 , 0 , 0);
86                 } // if
87         }
88 }
89
90 // ----------------------------------------------------------------------------
91 int manualViewRoi::GetType() // virtual
92 {
93         return 2;
94 }
95
96 // ----------------------------------------------------------------------------
97
98 void manualViewRoi::GetMinMax(double &minX,double &minY, double &maxX, double &maxY)
99 {
100         double  pp[3];
101         manualPoint *mp;
102     unsigned int i;
103
104         minX=99999;
105         minY=99999;
106         maxX=-99999;
107         maxY=-99999;
108
109         unsigned int size=(unsigned int) _manContModel->GetSizeLstPoints();
110
111         for( i = 0; i < size; i++ )
112         {
113
114                 mp=_manContModel->GetManualPoint(i);
115                 pp[0]=mp->GetX();
116                 pp[1]=mp->GetY();
117
118                 // min X
119                 if (pp[0]<minX)
120                 {
121                         minX=pp[0];
122                 }
123                 //min Y
124                 if (pp[1]<minY)
125                 {
126                         minY=pp[1];
127                 }
128                 //max X
129                 if (pp[0]>maxX)
130                 {
131                         maxX=pp[0];
132                 }
133                 // max Y
134                 if (pp[1]>maxY)
135                 {
136                         maxY=pp[1];
137                 }
138         }
139
140         if ( size<1 )
141         {
142                 minX=0;
143                 maxX=0;
144                 minY=0;
145                 maxY=0;
146         }
147 }
148
149 // ----------------------------------------------------------------------------
150
151
152 bool manualViewRoi::ifTouchContour(int x,int y, int z) // virtual
153 {
154         bool    result=false;
155         double  px1=99999,py1=99999,px2=-99999,py2=-99999;
156
157         GetMinMax(px1,py1, px2, py2);
158
159         double xx=x;
160         double yy=y;
161         double zz=z;
162         TransfromCoordViewWorld(xx,yy,zz);
163
164         bool ok1=false;
165         bool ok2=false;
166         double ddx=GetRange();
167         double ddy=GetRange();
168
169         if ((xx>px1-ddx)&&(xx<px2+ddx) &&  (yy>py1-ddy)&&(yy<py2+ddy))
170         {
171                 ok1=true;
172         }
173
174         if ((xx>px1+ddx)&&(xx<px2-ddx) &&  (yy>py1+ddy)&&(yy<py2-ddy))
175         {
176                 ok2=true;
177         }
178
179         if ((ok1==true) && (ok2==false))
180         {
181                 result=true;
182         }
183                 
184         return result;
185 }
186
187 // ----------------------------------------------------------------------------
188
189 void manualViewRoi::InitMove(int x, int y, int z)  // virtual
190 {
191         manualPoint *mp;
192         double XX=x;
193         double YY=y;
194         double ZZ=z;
195         TransfromCoordViewWorld(XX,YY,ZZ);
196
197         if (_manContModel->GetSizeLstPoints()==4){
198                 mp = _manContModel->GetManualPoint(0);
199                 _dp0[0]= mp->GetX() - XX;
200                 _dp0[1]= mp->GetY() - YY;
201                 _dp0[2]= mp->GetZ();
202
203                 mp = _manContModel->GetManualPoint(1);
204                 _dp1[0]= mp->GetX() - XX;
205                 _dp1[1]= mp->GetY() - YY;
206                 _dp1[2]= mp->GetZ();
207
208                 mp = _manContModel->GetManualPoint(2);
209                 _dp2[0]= mp->GetX() - XX;
210                 _dp2[1]= mp->GetY() - YY;
211                 _dp2[2]= mp->GetZ();
212
213                 mp = _manContModel->GetManualPoint(3);
214                 _dp3[0]= mp->GetX() - XX;
215                 _dp3[1]= mp->GetY() - YY;
216                 _dp3[2]= mp->GetZ();
217         }
218 }
219
220 // ----------------------------------------------------------------------------
221
222 void manualViewRoi::MoveContour(int x, int y, int z) // virtual
223 {
224         manualPoint *mp;
225         double XX=x;
226         double YY=y;
227         double ZZ=z;
228         TransfromCoordViewWorld(XX,YY,ZZ);
229
230         mp = _manContModel->GetManualPoint(0);
231         mp->SetPoint(_dp0[0]+XX,_dp0[1]+YY,_dp0[2]);
232
233         mp = _manContModel->GetManualPoint(1);
234         mp->SetPoint(_dp1[0]+XX,_dp1[1]+YY,_dp0[2]);
235
236         mp = _manContModel->GetManualPoint(2);
237         mp->SetPoint(_dp2[0]+XX,_dp2[1]+YY,_dp0[2]);
238
239         mp = _manContModel->GetManualPoint(3);
240         mp->SetPoint(_dp3[0]+XX,_dp3[1]+YY,_dp0[2]);
241
242         UpdateViewPoint(0);
243         UpdateViewPoint(1);
244         UpdateViewPoint(2);
245         UpdateViewPoint(3);
246
247 }