]> Creatis software - creaContours.git/blob - lib/Interface_ManagerContour_NDimensions/wxContourMainFrame.cxx
9e4b3b1298b544cd9aaa005e3c606639b6c5bde5
[creaContours.git] / lib / Interface_ManagerContour_NDimensions / wxContourMainFrame.cxx
1 //----------------------------------------------------------------------------------------------------------------
2 // Class definition include
3 //----------------------------------------------------------------------------------------------------------------
4 #include "wxContourMainFrame.h"
5
6
7
8 //----------------------------------------------------------------------------------------------------------------
9 // Includes
10 //----------------------------------------------------------------------------------------------------------------
11
12
13 #include "NameWrapper.h"
14 #include "wx/artprov.h"
15 #include "ConceptDataWrap.h"
16 #include <creaWx.h>
17
18 #include <string>
19 using namespace std;
20
21 //----------------------------------------------------------------------------------------------------------------
22 // Class implementation
23 //----------------------------------------------------------------------------------------------------------------
24 /** @file wxContourMainFrame.cxx */
25
26         //------------------------------------------------------------------------------------------------------------
27         // Constructors & Destructors
28         //------------------------------------------------------------------------------------------------------------
29
30 wxContourMainFrame* wxContourMainFrame:: instance = NULL;
31 char wxContourMainFrame::COPY = 'C';
32
33         wxContourMainFrame :: wxContourMainFrame(wxWindow* parent, wxWindowID id,const wxString& title,const wxPoint& pos,const wxSize& size,long style)
34                 //: wxPanel(parent, id, title, pos, size, style)
35                 //: wxWindow(parent, id, pos, size, style)
36                 : wxPanel(parent, id, pos, size, style)
37         {
38                 m_mgr.SetManagedWindow(this);
39                 _contourGroup                           = 1;
40                 _creatingContoursActive         = false;
41                 _theViewPanel                           = NULL;
42 //              _modelManager                           = NULL;
43                 _instantPanel                           = NULL;
44 //              _buttonsBar                                     = NULL;
45 //              _gridPanel                                      = NULL;
46 //              _drawToolsPanel                         = NULL;
47 //              _operationsToolsPanel           = NULL;
48                 //_autoFormsPanel                               = NULL;
49 //              _standardToolsPanel                     = NULL;
50 //              _editionToolsPanel                      = NULL;
51 //              _listViewPanel                          = NULL;
52 //              _sceneManager                           = NULL;
53                 //_actualInstant                                = NULL;
54                 _numberOfVariablesStatistics = 6+1;
55
56                 _refLineControl                         = NULL;
57                 _refLineModel                           = NULL;
58                 _refLineView                            = NULL;
59 //              _actorPresent                           = false;
60
61                 // set up default notebook style
62 //              m_notebook_style =wxAUI_NB_TAB_SPLIT | wxAUI_NB_TAB_EXTERNAL_MOVE | wxNO_BORDER;
63 //              m_notebook_theme = 0;
64                 //wxContour_ActionCommandsID a;
65
66                 _contourextractdata                     = NULL;
67                 _viewMaskImage                          = NULL;
68                 _viewMaskImagePanel                     = NULL;
69                 _viewThresholdImage                     = NULL;
70                 _viewThresholdImagePanel        = NULL;
71                 _viewColorLayerImage            = NULL;
72                 _viewColorLayerImagePanel       = NULL;
73         }
74
75         wxContourMainFrame :: wxContourMainFrame(wxWindow* parent, wxWindowID id,const wxString& title,const wxPoint& pos,const wxSize& size,std::vector<vtkImageData*> images, long style,std::string datadir)
76                 : wxPanel(parent, id, pos, size, style)
77         {
78                 m_mgr.SetManagedWindow(this);
79                 _contourGroup                           = 1;
80                 _creatingContoursActive         = false;
81                 _theViewPanel                           = NULL;
82
83                 _instantPanel                           = NULL;
84                 _refLineControl                         = NULL;
85                 _refLineModel                           = NULL;
86                 _refLineView                            = NULL;
87 //              _actorPresent                           = false;
88                 _viewMaskImage                          = NULL;
89                 _viewMaskImagePanel                     = NULL;
90                 _viewThresholdImage                     = NULL;
91                 _viewThresholdImagePanel        = NULL;
92                 _viewColorLayerImage            = NULL;
93                 _viewColorLayerImagePanel       = NULL;
94
95                 // set up default notebook style
96                 m_notebook_style =wxAUI_NB_TAB_SPLIT | wxAUI_NB_TAB_EXTERNAL_MOVE | wxNO_BORDER;
97                 m_notebook_theme = 0;
98                 //wxContour_ActionCommandsID a;
99                 _numberOfVariablesStatistics = 7;
100
101                 _datadir = datadir;
102
103
104                 inredo = 0;
105                 inundo = 0;
106
107                 _pannew = interfMainPanel::getInstance(this,datadir+"/data/Icons");//, eventHandler);
108                 _performingOperation = new PerformingOperation();
109
110                 if(images.size() > 0)
111                 {
112                         this->setVectImages(images);
113                 }
114
115                 _contourextractdata                     = NULL;
116 }
117
118 void wxContourMainFrame::setVectImages(std::vector<vtkImageData*> imgs)
119 {
120
121         _images = imgs;
122
123         #if defined(__GNUC__)
124                 std::string str_home(getenv("HOME"));
125         #elif defined(_WIN32)
126                         std::string str_home(getenv("USERPROFILE"));
127         #endif
128                 std::string strCreaContourDataTmp = str_home + "/.creaContourDataTemp/";
129
130         std::vector<std::string> conceptNameVect;
131         std::vector<int> conceptSizeVect;
132
133         notebook = this->createNotebook();
134
135
136         kernelManager = new KernelManagerContour( imgs , _datadir+"/data/" , strCreaContourDataTmp );
137
138
139         _instantPanel                           = new wxInstantChooserPanel( notebook, "Instant Chooser", true, false, "c" );
140         _theViewPanel                           = new wxContourViewPanel( kernelManager->getSourceImage(), notebook );
141
142 //-------------------------------------------------------------
143         kernelManager->getConceptsInformation(conceptNameVect, conceptSizeVect);
144         _instantPanel->addConcepts(conceptNameVect, conceptSizeVect);
145
146
147         double val = _theViewPanel->getCurrentDeep();
148         _instantPanel->setConceptValue( "Axe Depth", (int)val );
149         //JCP _instantPanel->setConceptValue("time", num de imagenes);
150         ConceptDataWrap * data = _instantPanel->getConceptDataOf( "Axe Depth" );
151         //*******************changeInstant();
152         _theViewPanel->setVerticalConcept( "Axe Depth", data->getMinValue(), data->getMaxValue(), data->getMinShowedValue(),  data->getMaxShowedValue(), data->getActualValue() );
153
154         this->configurePanels( );
155
156 }
157
158
159         wxContourMainFrame* wxContourMainFrame :: getInstance(wxWindow* parent, wxWindowID id,const wxString& title,const wxPoint& pos,const wxSize& size,std::vector<vtkImageData*> images, long style,std::string datadir )
160         {
161                 if(instance == NULL){
162                         instance = new wxContourMainFrame(parent, id, title, pos, size, images, style,datadir);
163                 }
164                 return instance;
165         }
166
167         std::vector<vtkImageData*> wxContourMainFrame ::getVectImages()
168         {
169                 return kernelManager->getVectImages();
170         }
171
172         wxContourMainFrame* wxContourMainFrame :: getInstance()
173         {
174                 return instance;
175         }
176
177         void wxContourMainFrame :: resetInstance()
178         {
179                 instance->Destroy();
180         }
181
182         wxContourMainFrame :: ~wxContourMainFrame()
183         {
184                 delete _contourextractdata;
185                 deleteAllContours();
186                 _pannew->Close();
187                 interfMainPanel::resetInstance();
188                 delete kernelManager;
189                 instance = NULL;
190                 //_pannew->Destroy();
191                 //delete _pannew;
192
193                 m_mgr.UnInit();
194                 //delete m_mgr;
195
196                 //El problema al cerrar la aplicacion puede estar asociado
197                 //a que  wxAUINotebook esta en la aplicacion
198                 //principal (wxContourGUIExample)tambien
199                 //EED????               delete _theViewPanel;
200                 //EED????               delete _instantPanel;
201                 //EED????               delete _buttonsBar;
202                 //EED????               delete _actualInstant;
203                 //EED????               delete _sceneManager;
204         }
205
206
207         //------------------------------------------------------------------------------------------------------------
208         // Creational and initialization methods using WxAui
209         //------------------------------------------------------------------------------------------------------------
210         //
211         wxAuiNotebook * wxContourMainFrame :: createNotebook()
212         {
213                 wxSize client_size = GetClientSize();
214                 wxAuiNotebook* noteBook = new wxAuiNotebook(this, -1, wxPoint(client_size.x, client_size.y), wxSize(430,200), m_notebook_style);
215                 wxBitmap page_bmp = wxArtProvider::GetBitmap(wxART_NORMAL_FILE, wxART_OTHER, wxSize(16,16));
216                 return noteBook;
217         }
218
219
220         //------------------------------------------------------------------------------------------------------------
221         // Creational and initialization methods
222         //------------------------------------------------------------------------------------------------------------
223         bool wxContourMainFrame :: configurePanels( )
224         {
225                 bool configured = _theViewPanel!=NULL;
226
227                 configured &= _theViewPanel!=NULL;
228                 if( _theViewPanel!=NULL )
229                 {
230                         notebook->AddPage( _theViewPanel, wxT("       View       ") );
231                         m_mgr.Update();
232                 }
233
234
235                 if( configured )
236                 {
237                         notebook->AddPage( _instantPanel, wxT("Instant Page") );
238                         m_mgr.Update();
239                 }
240
241                 m_mgr.AddPane(notebook, wxAuiPaneInfo().Name(wxT("notebook_content")).CenterPane().PaneBorder(false));
242                 m_mgr.Update();
243
244                 SetMinSize(wxSize(300,300));
245                 m_mgr.Update();
246                 return configured;
247         }
248
249
250         bool wxContourMainFrame::addNewPanel(wxPanel* panel)
251                 {
252                 bool configured = panel!=NULL;
253                 configured &= panel!=NULL;
254
255                 if( configured )
256                 {
257                         notebook->AddPage( panel, wxT("       Viewer       "), true );
258                         m_mgr.Update();
259                 }
260                 return configured;
261         }
262
263         //------------------------------------------------------------------------------------------------------------
264         //  Attributes getters and setters
265         //------------------------------------------------------------------------------------------------------------
266
267
268
269         void wxContourMainFrame :: setInstantChooserPanel(  wxInstantChooserPanel * theInstantChooserPanel )
270         {
271                 _instantPanel = theInstantChooserPanel;
272         }
273
274 //      void wxContourMainFrame :: setButtonsBar(  wxContour_ButtonsBar * theButtonsBar )
275 //      {
276 //              _buttonsBar = theButtonsBar;
277 //      }
278
279 //      void wxContourMainFrame :: setGrid(  wxContour_Grid * theGridPanel )
280 //      {
281 //              _gridPanel = theGridPanel;
282 //      }
283
284 //      void wxContourMainFrame :: setDrawToolsPanel(  wxContour_DrawToolsPanel * theDrawToolsPanel )
285 //      {
286 //              _drawToolsPanel = theDrawToolsPanel;
287 //      }
288
289 //      void wxContourMainFrame :: setOperationsToolsPanel(  wxContour_OperationsToolsPanel * theOperationsToolsPanel )
290 //      {
291 //              _operationsToolsPanel = theOperationsToolsPanel;
292 //      }
293
294 //      void wxContourMainFrame :: setAutomaticFormsPanel(  wxContour_AutomaticFormsToolsPanel * theAutoFormsPanel )
295 //      {
296 //              _autoFormsPanel = theAutoFormsPanel;
297 //      }
298
299 //      void wxContourMainFrame :: setStandardToolsPanel(  wxContour_StandardToolsPanel * theStandardToolsPanel )
300 //      {
301 //              _standardToolsPanel= theStandardToolsPanel;
302 //      }
303
304 //      void wxContourMainFrame :: setEditionToolsPanel(  wxContour_EdtionToolsPanel * theEditionToolsPanel )
305 //      {
306 //              _editionToolsPanel =  theEditionToolsPanel;
307 //      }
308
309 //      void wxContourMainFrame :: setListViewPanel(  wxContour_ListViewPanel * theListViewPanel )
310 //      {
311 //              _listViewPanel = theListViewPanel;
312 //      }
313
314
315
316 void wxContourMainFrame::onCreateContourSpline( ){
317
318         //JCP 20-10-08 Undo redo implementation
319         saveState();
320         //JCP 20-10-08 Undo redo implementation
321         createContour( 1 );
322
323 }
324 void wxContourMainFrame::onCreateContourRectangle( ){
325     //JCP 20-10-08 Undo redo implementation
326         saveState();
327         //JCP 20-10-08 Undo redo implementation
328         createContour( 2 );
329 }
330 void wxContourMainFrame::onCreateContourCircle( ){
331     //JCP 20-10-08 Undo redo implementation
332         saveState();
333         //JCP 20-10-08 Undo redo implementation
334         createContour( 3 );
335 }
336
337 void wxContourMainFrame::onCreateContourLine( ){
338     //JCP 20-10-08 Undo redo implementation
339         saveState();
340         //JCP 20-10-08 Undo redo implementation
341         createContour( 6 );
342 }
343
344 // RaC 09-09 --------------------------------------
345 void wxContourMainFrame::onCreateContourPoints( ){
346     //JCP 20-10-08 Undo redo implementation
347         saveState();
348         //JCP 20-10-08 Undo redo implementation
349         createContour( 7 );
350 }
351 // RaC 09-09 --------------------------------------
352
353 // RaC 10-09 --------------------------------------
354 void wxContourMainFrame::onCreateContourPolygon( ){
355     //JCP 20-10-08 Undo redo implementation
356         saveState();
357         //JCP 20-10-08 Undo redo implementation
358         createContour( 10 );
359 }
360 // RaC 10-09 --------------------------------------
361
362 //------------------------------------------------------------------------------------------------------------
363
364 void wxContourMainFrame :: onCreateContourBullEye(wxPanel* panel )
365 {
366         //Creating the manualBaseModel and including in the model
367         manualBaseModel * manModelContour = factoryManualContourModel(panel );
368
369         std::vector<int> instantVector;
370         _instantPanel->getInstant( instantVector );
371         std::string theName = kernelManager->createOutline(manModelContour, instantVector);
372
373         /*std::vector<int> instantVector;
374         _instantPanel->getInstant( instantVector );
375         std::string theName;
376         theName= _modelManager->createOutline( manModelContour, instantVector );*/
377         bool addedModel = theName.compare("") != 0;//??
378
379         if( addedModel )
380         {
381                 double spc[3];//Si no hay imagen pero hay contornos que spacing se pone por default
382                 _theViewPanel->getSpacing(spc);
383                 //Adding the manualContourControler to interface objects structure
384                 //Adding the manualViewContour to interface objects structure
385                 //_theViewPanel->getSceneManager()->setControlActiveStateOfALL( false );//This call is being done here because if the ROI is created underneath the previously created ROIS will still be active.
386                 _theViewPanel->getSceneManager()->configureViewControlTo( theName, manModelContour,spc , 4) ;
387         }
388 }
389 void wxContourMainFrame :: createContour( int typeContour )
390 {
391         //Creating the manualContourModel and including in the model
392         manualBaseModel * manModelContour = kernelManager->factoryManualContourModel(typeContour);
393
394         std::vector<int> instantVector;
395         _instantPanel->getInstant( instantVector );
396         std::string theName = kernelManager->createOutline(manModelContour, instantVector);
397
398         /*std::vector<int> instantVector;
399         _instantPanel->getInstant( instantVector );
400         std::string theName;
401         theName= _modelManager->createOutline( manModelContour, instantVector );*/
402         bool addedModel = theName.compare("") != 0;//??
403         if( addedModel )
404         {
405                 double spc[3];//Si no hay imagen pero hay contornos que spacing se pone por default
406                 _theViewPanel->getSpacing(spc);
407                 //Adding the manualContourControler to interface objects structure
408                 //Adding the manualViewContour to interface objects structure
409                 //_sceneManager->setControlActiveStateOfALL( false );//This call is being done here because if the ROI is created underneath the previously created ROIS will still be active.
410                 _theViewPanel->getSceneManager()->configureViewControlTo( theName, manModelContour,spc , typeContour) ;
411         }
412
413 }
414 manualBaseModel * wxContourMainFrame::factoryManualContourModel(wxPanel* panel){
415
416         manualContourModelBullEye *manModelContourBullEye = new manualContourModelBullEye();
417         manualBaseModel *manModelContour=NULL;
418         manModelContour = manModelContourBullEye;
419         if (panel!=NULL){
420                 int iCrown,sizeCrowns,iSector,sizeSectors;
421                 double radioA,radioB,ang,angDelta ;
422                 sizeCrowns = ((PanelBullEyeOptions*)panel)->GetNumberOfCrowns();
423                 for ( iCrown=0 ; iCrown<sizeCrowns ; iCrown++ )
424                 {
425                         sizeSectors = ((PanelBullEyeOptions*)panel)->GetNumberOfSections(iCrown);
426                         radioB  = ((PanelBullEyeOptions*)panel)->GetRadioOfCrown(iCrown);
427                         if (iCrown==sizeCrowns-1)
428                         {
429                                 radioA  = 0;
430                         } else {
431                                 radioA  = ((PanelBullEyeOptions*)panel)->GetRadioOfCrown(iCrown+1);
432                         }
433                         radioA=radioA/100.0;
434                         radioB=radioB/100.0;
435                         for ( iSector=0 ; iSector<sizeSectors  ; iSector++ )
436                         {
437                                 ang             = ((PanelBullEyeOptions*)panel)->GetAngOfCrownSection(iCrown,iSector);
438                                 angDelta= ((PanelBullEyeOptions*)panel)->GetAngDeltaOfCrownSection(iCrown);
439                                 manModelContourBullEye->AddSector(radioA,radioB,ang,angDelta);
440                         } // for iSector
441                 } // for iCrown
442         } // if _panelBullEyeOptions
443
444         return manModelContour;
445 }
446 void wxContourMainFrame :: saveState(){
447
448         std::string temp = kernelManager->saveState();
449         saveFileWithContours(temp);
450 }
451
452 void wxContourMainFrame::onDeleteContour(){
453         //JCP 20-10-08 Undo redo implementation
454                 saveState();
455                 //JCP 20-10-08 Undo redo implementation
456
457                 std::vector<std::string> lstKeyNameToBeErase;
458                 lstKeyNameToBeErase             = _theViewPanel->getSceneManager()->getSelectedObjects();
459                 deleteContours( lstKeyNameToBeErase );
460 /*JCP 19 - 11 - 08
461                 int i,size=_sceneManager->getSelectedObjects().size();
462                 for(i=0;i<size;i++)
463                 {
464                         std::string keyName             = _sceneManager->getSelectedObjects()[i];
465                         int ispartofstaticlist  = this->_modelManager->IsPartOfStaticList( keyName );
466                         if ( ispartofstaticlist>=0 )
467                         {
468                                 std::vector<int> tempVector;
469                                 _instantPanel->getInstant( tempVector );
470                                 Instant instant(&tempVector);
471                                 this->_modelManager->ChangeContourOfList(keyName, &instant);
472                         }
473                 }
474
475                 std::vector<std::string> lstKeyName;
476                 std::vector<std::string> lstKeyNameActualSlice;
477                 std::vector<std::string> lstKeyNameToBeErase;
478
479                 lstKeyNameToBeErase             = _sceneManager->getSelectedObjects();
480                 lstKeyNameActualSlice   = _sceneManager->GetlstContoursNameActualSlice();
481                 int k,kSize=lstKeyNameToBeErase.size();
482                 int j,jSize=lstKeyNameActualSlice.size();
483                 bool ok;
484                 for (k=0;k<kSize; k++)
485                 {
486                         ok=false;
487                         for (j=0;j<jSize; j++)
488                         {
489                                 if (lstKeyNameToBeErase[k]==lstKeyNameActualSlice[j])
490                                 {
491                                         ok=true;
492                                 }
493                         } // for j
494                         if (ok==true)
495                         {
496                                 lstKeyName.push_back( lstKeyNameToBeErase[k] );
497                         } // if ok
498                 } // for k
499
500                 deleteContours( lstKeyName );
501 JCP 19 - 11 - 08*/
502 }
503
504 void wxContourMainFrame :: deleteContours( std::vector<std::string>  keyNamesVector )
505 {
506         int i,size=keyNamesVector.size();
507         for (i=0;i<size;i++)
508         {
509                 deleteContour( keyNamesVector[i] );
510         }
511 }
512
513 void wxContourMainFrame :: deleteContour( std::string theKeyName ){
514         /*
515         manualContourModel                      * cModel;
516         manualViewBaseContour           * cViewer;
517         manualContourBaseControler      * cControler;
518
519         ContourWrap_ViewControl *conwrapviewControl =  _theViewPanel->getSceneManager()->getContourWrap_ViewControlOf( theKeyName );
520         cControler      = conwrapviewControl->getControler();*/
521
522         //JCP 21 - 11 - 2008
523         bool isedit = _theViewPanel->isEditableCControler(theKeyName);
524         bool ispartofstaticlst = kernelManager->IsPartOfStaticList(theKeyName);
525
526         if (isedit  && ispartofstaticlst)
527         {
528                 _theViewPanel->removeFromScene(theKeyName);
529
530                 kernelManager->deleteCModel(theKeyName);
531                 //_theViewPanel->getSceneManager()->removeFromScene( theKeyName );
532                 //cViewer               = conwrapviewControl->getViewer();
533                 //_theViewPanel->getSceneManager()->removeWrap( theKeyName );
534                 //cControler* conwrapviewControl->getControler();
535         //      delete cModel;
536         //      delete cViewer;
537         //      delete cControler;
538         } // if editable
539 //JCP 21 - 11 - 08
540 }
541
542 void wxContourMainFrame::onDeleteContoursActSlice(){
543         //JCP 20-10-08 Undo redo implementation
544         saveState();
545         //JCP 20-10-08 Undo redo implementation
546         deleteContours( (std::vector<std::string>)_theViewPanel->getSceneManager()->GetlstContoursNameActualSlice() );
547 }
548 void wxContourMainFrame::onDeleteAllContours(){
549         //JCP 20-10-08 Undo redo implementation
550         saveState();
551         deleteAllContours();
552 }
553 void wxContourMainFrame::deleteAllContours(){
554         //JCP 20-10-08 Undo redo implementation
555
556         wxBusyCursor wait;
557         std::vector<int> tempVector;
558         _instantPanel->getInstant( tempVector );
559
560 //JCP --08-09-2008 When using a diferent interface the _mbarrangeDeleteAll might not be initialize
561 //              the values in GetStart and GetEnd will then not be initialize also.
562 //              We use instead the values given when initializing the _deletepanel.
563
564         //int minZ = _mbarrangeDeleteAll->GetStart();
565         //int maxZ = _mbarrangeDeleteAll->GetEnd();
566         int minZ, maxZ;
567
568         minZ = 0;
569         maxZ = _theViewPanel->getSceneManager()->GetImageDataSizeZ();
570
571 //JCP --08-09-2008
572
573         _theViewPanel->getSceneManager()->removeSceneContours( );
574         _theViewPanel->getSceneManager()->removeAllOutlines();
575         kernelManager->removeAllOutlines();
576 //JCP --08-09-2008
577         /*
578         if ( (minZ==0) && (maxZ==_mbarrangeDeleteAll->GetMax() ))
579         {
580                 _theViewPanel->getSceneManager()->removeSceneContours( );
581                 _modelManager->removeAllOutlines();
582                 _theViewPanel->getSceneManager()->removeAllOutlines();
583
584         } else {
585                 for ( z=minZ ; z<=maxZ ; z++)
586                 {
587                         tempVector[1]=z;
588                         Instant instant(&tempVector);
589                         std::vector<ContourThing**> lstContourThings = this->_modelManager->getOutlinesAtInstant( &instant );
590
591                         sizeLstContourThings = lstContourThings.size();
592                         for (ii=0 ; ii<sizeLstContourThings ; ii++)
593                         {
594                                 ContourThing **contourthing = lstContourThings[ii];
595                                 deleteContour( (*contourthing)->getName() );
596                         } //for ii
597                 }// for z
598         } // if
599 JCP --08-09-2008 */
600 }
601
602 void wxContourMainFrame::setConceptValue( std::string name, int value ){
603         _instantPanel->setConceptValue(name, value);
604 }
605
606
607 ConceptDataWrap* wxContourMainFrame::getLastConceptData(){
608         return _instantPanel->getLastConceptData();
609 }
610
611
612 bool wxContourMainFrame::getIfConceptCheckedAt( std::string name, int pos ){
613         return _instantPanel->getIfConceptCheckedAt( name, pos );
614 }
615
616
617
618 void wxContourMainFrame::ShowResultImages(int typeContourGroup, int selection, int minZ, int maxZ)
619 {
620         vtkImageData * mask;
621         vtkImageData * value;
622         this->getMaskValue(&mask, &value, typeContourGroup, selection, minZ, maxZ);
623
624         std::vector<int> nTypeView;
625         nTypeView.push_back(5);
626         nTypeView.push_back(1);
627         nTypeView.push_back(2);
628         nTypeView.push_back(0);
629
630         wxFrame *frame = new wxFrame(this, -1,_T("Result image extracted.."),wxDefaultPosition,wxSize(600,600), wxDEFAULT_FRAME_STYLE|wxSTAY_ON_TOP);
631         wxAuiManager *m_mgr_noteBookViewerResult = new wxAuiManager();
632         m_mgr_noteBookViewerResult->SetManagedWindow(frame);
633
634         wxAuiNotebook* noteBookViewerResult = new wxAuiNotebook(frame, -1, wxPoint(600, 600), wxSize(430,200), m_notebook_style);
635         m_mgr_noteBookViewerResult->AddPane(noteBookViewerResult, wxAuiPaneInfo().Name(wxT("notebook_content")).CenterPane().PaneBorder(false));
636
637         wxPanel *panelViewer1 = new wxMaracas_N_ViewersWidget(noteBookViewerResult, value,&nTypeView);
638         wxPanel *panelViewer2 = new wxMaracas_N_ViewersWidget(noteBookViewerResult, mask,&nTypeView);
639
640
641         noteBookViewerResult->AddPage( panelViewer1, wxT("Image result") );
642         noteBookViewerResult->AddPage( panelViewer2, wxT("Mask result") );
643         m_mgr_noteBookViewerResult->Update();
644         frame->Show();
645 }
646
647
648
649
650 void wxContourMainFrame::changeInstant()
651 {
652                 std::vector<int> instantVect;
653                 _instantPanel->getInstant( instantVect );
654                 int actualSlice = instantVect[1];
655
656                 kernelManager->setInstant(instantVect);
657
658             // Refresh Mask image
659                 if(_viewMaskImage!=NULL){
660                         _viewMaskImage->SetZ(actualSlice);
661                         if (_viewMaskImagePanel->IsVisible()==true)
662                         {
663                                 vtkImageData *mask, *value;
664                                 getMaskValue(&mask,&value, _contourGroup , 0, -1, -1);
665                                 _viewMaskImage->onThreshold();
666                         }
667                 }
668
669         // Refresh Threshold image
670                 if(_viewThresholdImage!=NULL){
671                         _viewThresholdImage->SetZ(actualSlice);
672                         if (_viewThresholdImagePanel->IsVisible()==true){
673                                 _viewThresholdImage->onThreshold();
674                         }
675                 }
676
677         // Refresh Threshold image
678                 if(_viewColorLayerImage!=NULL){
679                         _viewColorLayerImage->SetZ(actualSlice);
680                         if (_viewColorLayerImagePanel->IsVisible()==true){
681                                 _viewColorLayerImage->onThreshold();
682                         }
683                 }
684
685                 updateInstantOutlines();
686                 updateInstantImageData();
687                 updateInstantAxes();
688 }
689
690
691
692 void wxContourMainFrame :: updateInstantOutlines()
693 {
694         _theViewPanel->removeSceneContours();
695         _theViewPanel->addNameWrapperToScene();
696
697         //for( int i=0; i<size; i++)
698         //{
699         //      _theViewPanel->getSceneManager()->addToScene(namesWrapping[i]->getKeyName(), true, true, true, false, false );
700         //}
701 }
702
703 int wxContourMainFrame::getNamesWrappingSize(){
704         return kernelManager->getNamesWrappingSize();
705 }
706 std::string wxContourMainFrame::getNameWrapping(int i){
707         return kernelManager->getNameWrapping(i);
708 }
709
710 void wxContourMainFrame::updateInstantImageData()
711 {
712         std::vector<int> inst;
713         _instantPanel->getInstant(inst);
714
715         vtkImageData* img = kernelManager->getImageAtInstant(inst);
716         if(img!=NULL){
717                 _theViewPanel->changeImage(img);
718                 showAxis(false);
719         }else{
720                 int z = _instantPanel->getConceptDataOf("Axe Depth")->getActualValue();
721                 _theViewPanel->setImageSlice(z);
722         }
723 }
724
725 void wxContourMainFrame::updateInstantAxes()
726 {
727 }
728
729
730 void wxContourMainFrame::onChangeDeep(int val){
731         _instantPanel->setConceptValue( "Axe Depth", (int)val );
732         changeInstant();
733 }
734
735
736 void wxContourMainFrame::onCopy(){
737         std::vector<std::string> currentSelection = _theViewPanel->getSelectedObjects();
738
739         std::vector<int> tempVector;
740         _instantPanel->getInstant( tempVector );
741     _performingOperation->reset();
742         _performingOperation->setStartCommand( COPY );
743         _performingOperation->setStartOperationInstantVector( tempVector );
744         _performingOperation->setKeyNamesOperationElems( currentSelection );
745 }
746
747 void wxContourMainFrame::onPaste(){
748
749
750         char theStartCommand = _performingOperation->getStartCommand();
751         if (  theStartCommand == COPY )
752         {
753                 //JCP 20-10-08 Undo redo implementation
754                 saveState();
755                 //JCP 20-10-08 Undo redo implementation
756                 std::vector<int> tempVector;
757                 _instantPanel->getInstant( tempVector );
758                 _performingOperation->setEndOperationInstantVector ( tempVector );
759                 std::vector<std::string> elems = _performingOperation->getKeyNamesOperationElems();
760                 int i,size = elems.size();
761                 for( i=0; i<size; i++ )
762                 {
763                         createCopyContourOf( elems[i], tempVector, i>0 );
764                 }
765         }
766 }
767 void wxContourMainFrame::onUndo(){
768         std::string filename;
769         if(kernelManager->onUndoSaveFile(filename)){
770                 saveFileWithContours(filename);
771         }
772         if(kernelManager->onUndo(filename)){
773                 loadState(filename);
774         }
775 }
776 void wxContourMainFrame::onRedo(){
777         std::string filename;
778         if(kernelManager->onRedo(filename)){
779                 loadState(filename);
780         }
781
782 }
783 void wxContourMainFrame :: createCopyContourOf ( std::string anExistingKName, std::vector<int> &instantNoTouchData, bool append )
784 {
785         std::string cloneName = kernelManager->createCopyContourOf( anExistingKName, instantNoTouchData );
786         manualBaseModel * manualModel = kernelManager->getOutlineByKeyName(cloneName);//_modelManager->getOutlineByKeyName( cloneName )->getModel();
787         _theViewPanel->getSceneManager()->createCopyContourOf( anExistingKName, cloneName, manualModel , append );
788 }
789
790 ///AD: 03-09    Copy the object and apply the given transformation
791 void wxContourMainFrame :: createMirrorContourOf ( std::string anExistingKName, std::vector<int> &instantNoTouchData, bool append )
792 {
793         std::string cloneName = kernelManager->createCopyContourOf( anExistingKName, instantNoTouchData );
794         manualBaseModel * manualModel = kernelManager->getOutlineByKeyName(cloneName);
795
796         manualPoint * refPoint1 = _refLineModel->GetManualPoint(0);
797         manualPoint * refPoint2 = _refLineModel->GetManualPoint(1);
798
799         double pnt1X = refPoint1->GetX();
800         double pnt1Y = refPoint1->GetY();
801 //      double pnt1Z = refPoint1->GetZ();
802         double pnt2X = refPoint2->GetX();
803         double pnt2Y = refPoint2->GetY();
804 //      double pnt2Z = refPoint2->GetZ();
805
806         double angle = (atan2(pnt2Y - pnt1Y, pnt2X - pnt1X) * 180 / 3.1415926535897932384626433832795)+90;
807         vtkTransform *t = vtkTransform::New();
808
809         t->PostMultiply();
810         t->Identity();
811         t->Translate(-pnt1X, -pnt1Y, 0);
812         t->RotateZ(-angle);
813         t->Scale(-1,1,1);
814         t->RotateZ(angle);
815         t->Translate(pnt1X, pnt1Y, 0);
816         t->Update();
817
818         int i,size=manualModel->GetSizeLstPoints();
819         for (i=0;i<size;i++)
820         {
821                 manualPoint * mp = manualModel->GetManualPoint(i);
822                 float vecIn[3];
823                 float vecOut[3];
824                 vecIn[0]=mp->GetX();
825                 vecIn[1]=mp->GetY();
826                 vecIn[2]=mp->GetZ();
827                 t->TransformPoint( vecIn, vecOut );
828                 mp->SetPointX( vecOut[0] );
829                 mp->SetPointY( vecOut[1] );
830                 mp->SetPointZ( vecOut[2] );
831         }
832
833         _theViewPanel->getSceneManager()->createCopyContourOf( anExistingKName, cloneName, manualModel , append );
834 }
835
836 //EED04
837 void wxContourMainFrame ::loadState(std::string filename){
838
839         deleteAllContours();
840         onLoadContours(filename,false);
841
842         /* EED Borrame
843         char tmp[255];
844         FILE *pFile=fopen(filename.c_str(),"r+");
845
846         fscanf(pFile,"%s",tmp); // --CreaContour--
847
848         fscanf(pFile,"%s",tmp); // Version
849         fscanf(pFile,"%s",tmp); // 1.0.3 || 1.0.2 || 1.0.1 || 1.0.0
850
851         deleteAllContours();
852
853         loadContours(pFile, false);
854         loadContours(pFile, true);
855
856         fclose(pFile);
857         */
858 }
859
860
861 //EED03
862 /*EED Borrame
863 void wxContourMainFrame::loadContours( FILE *pFile, bool staticContour )
864 {
865         char tmp[255];
866
867         if (staticContour==false)
868         {
869                 fscanf(pFile,"%s",tmp); // ImageDimensions
870                 fscanf(pFile,"%s",tmp); // X
871                 fscanf(pFile,"%s",tmp); // Y
872                 fscanf(pFile,"%s",tmp); // Z
873
874                 fscanf(pFile,"%s",tmp); // ImageSpacing
875                 fscanf(pFile,"%s",tmp); // X
876                 fscanf(pFile,"%s",tmp); // Y
877                 fscanf(pFile,"%s",tmp); // Z
878         }
879
880         fscanf(pFile,"%s",tmp); // NumberOfContours
881         fscanf(pFile,"%s",tmp); // ##
882         int numberOfContours = atoi(tmp);
883
884         std::vector<int> instantVector;
885         int typeContourModel;
886         manualBaseModel *manModelContour;
887         int typeView;
888
889         int i;
890         for (i=0;i<numberOfContours;i++)
891         {
892                 instantVector.clear();
893                 fscanf(pFile,"%s",tmp); // Instant
894                 fscanf(pFile,"%s",tmp); // 1
895                 instantVector.push_back( atoi(tmp) );
896                 fscanf(pFile,"%s",tmp); // 2
897                 instantVector.push_back( atoi(tmp) );
898                 fscanf(pFile,"%s",tmp); // 3
899                 instantVector.push_back( atoi(tmp) );
900                 fscanf(pFile,"%s",tmp); // 4
901                 instantVector.push_back( atoi(tmp) );
902                 fscanf(pFile,"%s",tmp); // 5
903                 instantVector.push_back( atoi(tmp) );
904                 fscanf(pFile,"%s",tmp); // 6
905                 instantVector.push_back( atoi(tmp) );
906
907                 fscanf(pFile,"%s",tmp); // TypeContourModel
908                 fscanf(pFile,"%s",tmp); // ##
909                 typeContourModel = atoi(tmp);
910
911                 manModelContour =  kernelManager->factoryManualContourModel(typeContourModel);
912                 manModelContour->Open(pFile);
913
914                 fscanf(pFile,"%s",tmp); // TypeView
915                 fscanf(pFile,"%s",tmp); // ##
916                 typeView = atoi(tmp);
917
918                 std::string theName;
919                 theName = kernelManager->createOutline( manModelContour, instantVector );
920                 bool addedModel = theName.compare("") != 0;
921                 if( addedModel )
922                 {
923                         double spc[3];//Si no hay imagen pero hay contornos que spacing se pone por default
924                         _theViewPanel->getSpacing(spc);
925                         //Adding the manualContourControler to interface objects structure
926                         //Adding the manualViewContour to interface objects structure
927                         //_theViewPanel->getSceneManager()->setControlActiveStateOfALL( false );//This call is being done here because if the ROI is created underneath the previously created ROIS will still be active.
928                         _theViewPanel->getSceneManager()->configureViewControlTo( theName, manModelContour,spc , typeView) ;
929                 }
930
931                 if (staticContour==true)
932                 {
933                         Instant instant(&instantVector);
934                         kernelManager->changeContourOfManager( theName , &instant );
935                 }
936         }// for  numberOfContours
937 }
938 */
939
940
941 void wxContourMainFrame::onLoad()
942 {
943         std::string fileNameContourROI = GetFileLocation();
944 //CMRU 03-09-09-----------------------------------------------------------------------------------------------
945         if(GetFileLocation().empty())
946         {
947 //------------------------------------------------------------------------------------------------------------
948                 wxFileDialog dialog(NULL, _T("Choose a file"), _T(""), _T(""), _T("*.roi"), wxOPEN );
949                 if (dialog.ShowModal() == wxID_OK)
950                 {
951                         fileNameContourROI = (const char *)(dialog.GetPath().mb_str());
952                 }
953         }
954
955         onLoadContours(fileNameContourROI,true);
956 }
957
958
959 void wxContourMainFrame::onLoadContours(std::string fileNameContourROI, bool interactiveInterface)
960 {
961         char tmp[255];
962         char tmpD[255];
963
964         FILE *pFile =fopen(fileNameContourROI.c_str(),"r+");
965
966
967 //CMRU 03-09-09- ----------------------------------------------------------------------------------------------
968         if(pFile != NULL)
969         {
970 //------------------------------------------------------------------------------------------------------------
971         fileNameContourROI.append("data");
972                 FILE *pFileData=fopen(fileNameContourROI.c_str(),"r+");
973                 if(pFileData != NULL)
974                 {
975                         fscanf(pFileData,"%s",tmpD); // --CreaContour--
976                         fscanf(pFileData,"%s",tmpD); // Version
977                         fscanf(pFileData,"%s",tmpD); // 1.0.3 || 1.0.2 || 1.0.1 || 1.0.0
978
979                         fscanf(pFileData,"%s",tmpD); // onePixelSize
980                         fscanf(pFileData,"%s",tmpD); // #
981                         _onePixelSize = atof(tmpD);
982                         fscanf(pFileData,"%s",tmpD); // NumberOfContours
983                         fscanf(pFileData,"%s",tmpD); // #
984                 }
985
986                 fscanf(pFile,"%s",tmp); // --CreaContour--
987
988                 fscanf(pFile,"%s",tmp); // Version
989                 fscanf(pFile,"%s",tmp); // 1.0.3 || 1.0.2 || 1.0.1 || 1.0.0
990                 std::string version(tmp);
991
992                 //AD:02-06-09
993         _tmpReadFileTypeOfTransformation=-1;
994                 if (version=="1.0.3")
995                 {
996                     readDimSpc(pFile,interactiveInterface);   // DimSpc interactive ON
997                         openContours(pFile,pFileData,false);
998                         openContours(pFile,pFileData,true);     //Load StaticContours
999                 }
1000
1001                 if (version=="1.0.2")
1002                 {
1003 //EED001
1004                     readDimSpc(pFile,interactiveInterface);  // DimSpc interactive ON
1005                         openContours(pFile,pFileData,false);
1006                     readDimSpc(pFile,false);  // DimSpc interactive OFF
1007                         openContours(pFile,pFileData,true);     //Load StaticContours
1008                 }
1009
1010                 //AD:02-06-09
1011                 else if (version=="1.0.1")
1012                 {
1013                         openContours(pFile,pFileData,false); //Skips ImageDimensions and ImageSpacing
1014                         openContours(pFile,pFileData,true); //Load StaticContours, skips ImageDimensions and ImageSpacing
1015                 }
1016
1017                 //AD:02-06-09
1018                 else if (version=="1.0.0")
1019                 {
1020                         openContours(pFile,pFileData,false); //Skips ImageDimensions and ImageSpacing
1021                 }
1022
1023                 fclose(pFile);
1024
1025                 if(pFileData != NULL)
1026                 {
1027                         fclose(pFileData);
1028                 }
1029         }
1030         _theViewPanel->getSceneManager()->removeSceneContours();
1031         changeInstant();
1032
1033 }
1034
1035
1036
1037 void wxContourMainFrame::onImport(){
1038         std::string filename, filenamecontours;
1039         wxFileDialog dialog(NULL, _T("Choose a XML Osirix File"), _T(""), _T(""), _T("*.xml"), wxOPEN );
1040
1041         if (dialog.ShowModal() == wxID_OK)
1042         {
1043                 filename = dialog.GetPath().mb_str();
1044                 filenamecontours = kernelManager->parseOsirixFile(filename);
1045
1046                 if(filenamecontours.compare("") != 0){
1047                         onLoadContours(filenamecontours,true);
1048                 }
1049
1050         }
1051 }
1052 void wxContourMainFrame::onTest(){
1053         std::string filename, filenamecontours;
1054         wxFileDialog dialog(NULL, _T("Choose a File"), _T(""), _T(""), _T("*.*"), wxOPEN );
1055
1056         if (dialog.ShowModal() == wxID_OK)
1057         {
1058                 filename = dialog.GetPath().mb_str();
1059                 std::cout << "This is the filename: " << filename << std::endl;
1060         }
1061 }
1062
1063
1064 //AD: 29-05-09
1065 void wxContourMainFrame::onSave(){
1066 //CMRU 03-09-09-----------------------------------------------------------------------------------------------
1067         if(GetFileLocation().empty())
1068         {
1069 //------------------------------------------------------------------------------------------------------------
1070                 wxFileDialog dialog(NULL, _T("Choose a file"), _T(""), _T(""), _T("*.roi"), wxSAVE );
1071                 if (dialog.ShowModal() == wxID_OK)
1072                 {
1073                         std::string fileNameContourROI = (const char *)(dialog.GetPath().mb_str());
1074                         kernelManager->setCurrentFileName(fileNameContourROI);
1075                         saveFileWithContours( fileNameContourROI );
1076                 }
1077         }
1078 //CMRU 03-09-09-----------------------------------------------------------------------------------------------
1079         else
1080         {
1081                 std::cout<<"Nombre del archivo: "<<GetFileLocation()<<std::endl;
1082                 std::string fileNameContourROI = GetFileLocation();
1083                 std::cout<<"Nombre del archivo: "<<fileNameContourROI<<std::endl;
1084                 kernelManager->setCurrentFileName(fileNameContourROI);
1085                 saveFileWithContours( fileNameContourROI);
1086         }
1087 //------------------------------------------------------------------------------------------------------------
1088 }
1089
1090 //AD: 29-05-09
1091 void wxContourMainFrame::saveFileWithContours( std::string filename )
1092 {
1093
1094         FILE *pFile=fopen(filename.c_str(),"w+");
1095
1096 //CMRU 03-09-09-----------------------------------------------------------------------------------------------
1097         filename.append("data");
1098         std::cout<<"Nombre del archivo: "<<filename<<std::endl;
1099         FILE *pFileData=fopen(filename.c_str(),"w+");
1100 //------------------------------------------------------------------------------------------------------------
1101
1102         std::vector< std::string > lstNameThings;
1103         int i,sizeLstNameThings;
1104
1105         fprintf(pFile,"--CreaContour--\n");
1106         fprintf(pFile,"Version %s\n", "1.0.3" );
1107
1108 //CMRU 03-09-09-----------------------------------------------------------------------------------------------
1109         fprintf(pFileData,"--CreaContour--\n");
1110         fprintf(pFileData,"Version %s\n", "1.0.3" );
1111         fprintf(pFileData,"OnePixelSize %f\n", _onePixelSize);
1112
1113 //------------------------------------------------------------------------------------------------------------
1114
1115         vtkImageData *image = _images[0];
1116
1117         int dimRange[3];
1118         image->GetDimensions(dimRange);
1119
1120         fprintf(pFile,"ImageDimensions %d %d %d\n", dimRange[0], dimRange[1], dimRange[2] );
1121
1122         double spaRange[3];
1123         image->GetSpacing(spaRange);
1124
1125         fprintf(pFile,"ImageSpacing %f %f %f\n", spaRange[0], spaRange[1], spaRange[2] );
1126
1127         // Normal Contours
1128
1129         lstNameThings           = kernelManager->GetLstNameThings();
1130         sizeLstNameThings       = lstNameThings.size();
1131         fprintf(pFile,"NumberOfContours %d\n", sizeLstNameThings );
1132
1133 //CMRU 03-09-09-----------------------------------------------------------------------------------------------
1134         fprintf(pFileData,"NumberOfContours %d\n", sizeLstNameThings );
1135 //------------------------------------------------------------------------------------------------------------
1136
1137         for (i=0 ; i<sizeLstNameThings ; i++)
1138         {
1139 //CMRU 03-09-09-----------------------------------------------------------------------------------------------
1140                 manualBaseModel * manualModel = kernelManager->getOutlineByKeyName(lstNameThings[i]);
1141                 double sizeInPixel = manualModel ->GetPathSize();
1142                 double realContourSize = sizeInPixel*_onePixelSize;
1143                 manualModel ->SetRealSize(realContourSize);
1144 //------------------------------------------------------------------------------------------------------------
1145
1146         //int size= kernelManager->GetLstNameThings().size();
1147
1148                 kernelManager->SaveThingName( pFile, pFileData, lstNameThings[i] );
1149                 _theViewPanel->getSceneManager()->SaveThingName( pFile, lstNameThings[i] );
1150         }// for i
1151
1152         //-- Static Contours
1153
1154 //      fprintf(pFile,"ImageDimensions %d %d %d\n", dimRange[0], dimRange[1], dimRange[2] );
1155 //      fprintf(pFile,"ImageSpacing %f %f %f\n", spaRange[0], spaRange[1], spaRange[2] );
1156
1157         lstNameThings           = kernelManager->GetLstNameThingsStatic();
1158         sizeLstNameThings       = lstNameThings.size();
1159         fprintf(pFile,"NumberOfContoursStatic %d\n", sizeLstNameThings );
1160
1161 //CMRU 03-09-09-----------------------------------------------------------------------------------------------
1162         fprintf(pFileData,"NumberOfContoursStatic %d\n", sizeLstNameThings );
1163 //------------------------------------------------------------------------------------------------------------
1164
1165         for (i=0 ; i<sizeLstNameThings ; i++)
1166         {
1167                 kernelManager->SaveThingName( pFile, pFileData, lstNameThings[i] );
1168                 _theViewPanel->getSceneManager()->SaveThingName( pFile, lstNameThings[i] );
1169         }// for i
1170         fclose(pFile);
1171         fclose(pFileData);
1172 }
1173
1174
1175 //EED02
1176 void wxContourMainFrame::readDimSpc(FILE *pFile, bool interactiveOption)
1177 {
1178         char tmp[255];
1179         int             imageDim[3];
1180         double          imageSpac[3];
1181         vtkImageData    *image          = _images[0];
1182     image->GetDimensions(imageDim);
1183     image->GetSpacing(imageSpac);
1184
1185     fscanf(pFile,"%s",tmp); // ImageDimensions
1186     fscanf(pFile,"%s",tmp); // X
1187     _tmpReadFileImageDim[0] = atoi(tmp);
1188     fscanf(pFile,"%s",tmp); // Y
1189     _tmpReadFileImageDim[1] = atoi(tmp);
1190     fscanf(pFile,"%s",tmp); // Z
1191     _tmpReadFileImageDim[2] = atoi(tmp);
1192
1193     fscanf(pFile,"%s",tmp); // ImageSpacing
1194     fscanf(pFile,"%s",tmp); // X
1195     _tmpReadFileImageSpac[0] = atof(tmp);
1196     fscanf(pFile,"%s",tmp); // Y
1197     _tmpReadFileImageSpac[1] = atof(tmp);
1198     fscanf(pFile,"%s",tmp); // Z
1199     _tmpReadFileImageSpac[2] = atof(tmp);
1200
1201
1202         if (interactiveOption==true)
1203     {
1204                 //Compare Spacing and Dims in X and Y (Necessary in Z?) - Just for Version 2
1205                 if (imageDim[0]!=_tmpReadFileImageDim[0] || imageDim[1]!=_tmpReadFileImageDim[1] || imageSpac[0]!=_tmpReadFileImageSpac[0] || imageSpac[1]!=_tmpReadFileImageSpac[1])
1206                 {
1207                         wxDialog* dial = new wxDialog (this,-1,_T("Tools"),wxDefaultPosition, wxSize(260,160));
1208                         wxSizer* buttonsSizer = dial->CreateSeparatedButtonSizer(wxOK|wxCANCEL);
1209                         wxBoxSizer *dialSizer = new wxBoxSizer(wxVERTICAL);
1210
1211                         wxString lstOptOperation[2];
1212                         lstOptOperation[0]=_T("By Dimension");
1213                         lstOptOperation[1]=_T("By Spacing");
1214                         wxRadioBox * radioOpts = new wxRadioBox(dial, -1, _T("Type of Transformation"), wxDefaultPosition, wxSize(270,45), 2 , lstOptOperation,  2, wxRA_SPECIFY_COLS);
1215
1216                         dialSizer->Add( new wxStaticText(dial,-1,_T("The image resolution is not compatible with the "))  , 0, wxGROW );
1217                         dialSizer->Add( new wxStaticText(dial,-1,_T("selected Roi file. Do you want to tranform it?"))  , 0, wxGROW );
1218                         dialSizer->Add( new wxStaticText(dial,-1,_T(" "))  , 0, wxGROW );
1219                         dialSizer->Add(radioOpts,0,wxGROW);
1220                         dialSizer->Add( new wxStaticText(dial,-1,_T(" "))  , 0, wxGROW );
1221                         dialSizer->Add(buttonsSizer,0,wxGROW);
1222                         dial->SetSizer(dialSizer, true);
1223                         dial->Layout();
1224                         dial->ShowModal();
1225
1226                         int _tmpReadFileTypeOfTransformation = -1;
1227 //EED                   bool transform = false;
1228
1229                         if (dial->GetReturnCode() == wxID_OK)
1230                         {
1231                                 _tmpReadFileTypeOfTransformation    = radioOpts->GetSelection();
1232                         }// if wxOK
1233
1234                 } // if dim spc
1235     } // if interactiveOption
1236 }
1237
1238
1239
1240
1241 //AD:04-06-09
1242 void wxContourMainFrame::openContours( FILE *pFile, FILE *pFileData, bool staticContour )
1243 {
1244
1245         char tmp[255];
1246
1247         vtkImageData    *image = _images[0];
1248
1249         int             imageDim[3];
1250         double          imageSpac[3];
1251     image->GetDimensions(imageDim);
1252     image->GetSpacing(imageSpac);
1253
1254
1255         fscanf(pFile,"%s",tmp); // NumberOfContours
1256         fscanf(pFile,"%s",tmp); // ##
1257         int numberOfContours = atoi(tmp);
1258
1259         std::vector<int> instantVector;
1260         int typeContourModel;
1261         manualBaseModel *manModelContour;
1262         int typeView;
1263
1264 /*
1265         if (compatible==true)
1266         {
1267                 int i;
1268                 for (i=0;i<numberOfContours;i++)
1269                 {
1270                         instantVector.clear();
1271                         fscanf(pFile,"%s",tmp); // Instant
1272
1273                         fscanf(pFile,"%s",tmp); // 1
1274                         instantVector.push_back( atoi(tmp) );
1275                         fscanf(pFile,"%s",tmp); // 2
1276                         instantVector.push_back( atoi(tmp) );
1277                         fscanf(pFile,"%s",tmp); // 3
1278                         instantVector.push_back( atoi(tmp) );
1279                         fscanf(pFile,"%s",tmp); // 4
1280                         instantVector.push_back( atoi(tmp) );
1281                         fscanf(pFile,"%s",tmp); // 5
1282                         instantVector.push_back( atoi(tmp) );
1283                         fscanf(pFile,"%s",tmp); // 6
1284                         instantVector.push_back( atoi(tmp) );
1285
1286
1287                         fscanf(pFile,"%s",tmp); // TypeContourModel
1288                         fscanf(pFile,"%s",tmp); // ##
1289                         typeContourModel = atoi(tmp);
1290
1291                         manModelContour =  kernelManager->factoryManualContourModel(typeContourModel);
1292                         manModelContour->Open(pFile);
1293                         if(pFileData != NULL)
1294                         {
1295                                 manModelContour->OpenData(pFileData);
1296                         }
1297
1298                         fscanf(pFile,"%s",tmp); // TypeView
1299                         fscanf(pFile,"%s",tmp); // ##
1300                         typeView = atoi(tmp);
1301
1302                         std::string theName;
1303                         theName = kernelManager->createOutline( manModelContour, instantVector );
1304                         bool addedModel = theName.compare("") != 0;
1305                         if( addedModel )
1306                         {
1307                                 double spc[3];//Si no hay imagen pero hay contornos que spacing se pone por default
1308                                 _theViewPanel->getSpacing(spc);
1309                                 //Adding the manualContourControler to interface objects structure
1310                                 //Adding the manualViewContour to interface objects structure
1311                                 //_theViewPanel->getSceneManager()->setControlActiveStateOfALL( false );//This call is being done here because if the ROI is created underneath the previously created ROIS will still be active.
1312                                 _theViewPanel->getSceneManager()->configureViewControlTo( theName, manModelContour,spc , typeView) ;
1313                         }
1314
1315                         if (staticContour) //StaticContours (will appear in all slices)
1316                         {
1317                                 Instant instant(&instantVector);
1318                                 kernelManager->changeContourOfManager( theName , &instant );
1319                         }
1320
1321                 }// for  numberOfContours
1322         }
1323
1324         else if (compatible==false)
1325         {
1326 */
1327
1328                 int i;
1329                 for (i=0;i<numberOfContours;i++)
1330                 {
1331                         instantVector.clear();
1332                         fscanf(pFile,"%s",tmp); // Instant
1333
1334                         fscanf(pFile,"%s",tmp); // 1
1335                         instantVector.push_back( atoi(tmp) );
1336                         fscanf(pFile,"%s",tmp); // 2
1337                         instantVector.push_back( atoi(tmp) );
1338                         fscanf(pFile,"%s",tmp); // 3
1339                         instantVector.push_back( atoi(tmp) );
1340                         fscanf(pFile,"%s",tmp); // 4
1341                         instantVector.push_back( atoi(tmp) );
1342                         fscanf(pFile,"%s",tmp); // 5
1343                         instantVector.push_back( atoi(tmp) );
1344                         fscanf(pFile,"%s",tmp); // 6
1345                         instantVector.push_back( atoi(tmp) );
1346
1347                         fscanf(pFile,"%s",tmp); // TypeContourModel
1348                         fscanf(pFile,"%s",tmp); // ##
1349                         typeContourModel = atoi(tmp);
1350
1351                         manModelContour =  kernelManager->factoryManualContourModel(typeContourModel);
1352                         manModelContour->Open(pFile);
1353                         if(pFileData != NULL)
1354                         {
1355                                 manModelContour->OpenData(pFileData);
1356                         }
1357
1358             if (_tmpReadFileTypeOfTransformation==-1){
1359                 //nothing to do..
1360             } else if (_tmpReadFileTypeOfTransformation==0){
1361                 double transX, transY;
1362                 transX = (double) imageDim[0]/_tmpReadFileImageDim[0];
1363                 transY = (double) imageDim[1]/_tmpReadFileImageDim[1];
1364                 manModelContour->Transform_Ax_Plus_B(transX,0,transY,0);
1365             } else if (_tmpReadFileTypeOfTransformation==1) {
1366                 double transX, transY;
1367                 transX = (double) _tmpReadFileImageSpac[0]/imageDim[0];
1368                 transY = (double) _tmpReadFileImageSpac[1]/imageDim[1];
1369                 manModelContour->Transform_Ax_Plus_B(transX,0,transY,0);
1370             }
1371
1372                         fscanf(pFile,"%s",tmp); // TypeView
1373                         fscanf(pFile,"%s",tmp); // ##
1374                         typeView = atoi(tmp);
1375
1376                         std::string theName;
1377                         theName = kernelManager->createOutline( manModelContour, instantVector );
1378                         bool addedModel = theName.compare("") != 0;
1379                         if( addedModel )
1380                         {
1381                                 double spc[3];//Si no hay imagen pero hay contornos que spacing se pone por default
1382                                 _theViewPanel->getSpacing(spc);
1383                                 //Adding the manualContourControler to interface objects structure
1384                                 //Adding the manualViewContour to interface objects structure
1385                                 //_theViewPanel->getSceneManager()->setControlActiveStateOfALL( false );//This call is being done here because if the ROI is created underneath the previously created ROIS will still be active.
1386                                 _theViewPanel->getSceneManager()->configureViewControlTo( theName, manModelContour,spc , typeView) ;
1387                         }
1388
1389                         if (staticContour) //StaticContours (will appear in all slices)
1390                         {
1391                                 Instant instant(&instantVector);
1392                                 kernelManager->changeContourOfManager( theName , &instant );
1393                         }
1394                 }// for  numberOfContours
1395
1396 /*      }    */
1397
1398 }
1399
1400 void wxContourMainFrame::RefreshInterface(){
1401         changeInstant();
1402         _theViewPanel->RefreshInterface();
1403         //wxVtk2DBaseView *wxvtk2dbaseview = (wxVtk2DBaseView*)this->_theViewPanel->getWxVtkBaseView();
1404         //wxvtk2dbaseview->Refresh();
1405 }
1406
1407 vtkImageData* wxContourMainFrame::getImageData(){
1408         return _theViewPanel->getImageData();
1409 }
1410
1411 void wxContourMainFrame::onSegmentationOneSliceITK(wxString distance, wxString sigma, wxString alfa, wxString beta, wxString propagation, wxString iterations, wxString inflation)
1412 {
1413         //JCP 20-10-08 Undo redo implementation
1414         saveState();
1415         //JCP 20-10-08 Undo redo implementation
1416
1417         wxBusyCursor wait;
1418         int                                     x                                       = _theViewPanel->GetX();
1419         int                                     y                                       = _theViewPanel->GetY();
1420         int                                     z                                       = _theViewPanel->GetZ();
1421         SegmentationOneSliceITK( x,y,z,distance, sigma, alfa, beta, propagation, iterations, inflation);
1422         RefreshInterface();
1423 }
1424
1425 void wxContourMainFrame::SegmentationOneSliceITK(int x, int y, int z, wxString distanc, wxString sigm, wxString alf, wxString bet, wxString prop, wxString iter, wxString inflation)
1426 {
1427         int typeofcontour = 1;
1428         //Image Data
1429         vtkImageData    *imagedata      = getImageData();
1430
1431         //Tipo de pixeles a utilizar internamente en ITK
1432         typedef   float  InternalPixelType;
1433         const     unsigned int    Dimension = 2;
1434         typedef itk::Image< InternalPixelType, Dimension >  InternalImageType;
1435
1436         //Tipo de pixeles de salida 1
1437         typedef unsigned char OutputPixelType;
1438         typedef itk::Image< OutputPixelType, Dimension > OutputImageType;
1439
1440         //Tipo de pixeles de salida 2
1441         typedef unsigned short OutputPixelType2;
1442         typedef itk::Image< OutputPixelType2, Dimension > OutputImageType2;
1443
1444         //DefiniciÛn del thresholder
1445         typedef itk::BinaryThresholdImageFilter<
1446                                                         InternalImageType,
1447                                                         OutputImageType    >    ThresholdingFilterType;
1448
1449         //DefiniciÛn del primer filtro de conversiÛn de pixeles
1450         typedef itk::CastImageFilter<
1451                                 OutputImageType, OutputImageType2 >  CastFilterType;
1452
1453         //DefiniciÛn del segundo tipo de conversiÛn de pixeles
1454         typedef itk::CastImageFilter<
1455                                 OutputImageType2, InternalImageType >  CastFilterType2;
1456
1457         //Tercer tipo de conversiÛn
1458         typedef itk::RescaleIntensityImageFilter<
1459                                                                 InternalImageType,
1460                                                                 OutputImageType >   CastFilterType3;
1461
1462         //Cuarto tipo de conversiÛn
1463         typedef itk::RescaleIntensityImageFilter<
1464                                                                 OutputImageType,
1465                                                                 OutputImageType >   CastFilterType4;
1466
1467         ThresholdingFilterType::Pointer thresholder = ThresholdingFilterType::New();
1468
1469         thresholder->SetLowerThreshold( 0.0 );
1470         thresholder->SetUpperThreshold( 128 );
1471
1472         thresholder->SetOutsideValue(  255  );
1473         thresholder->SetInsideValue(  0 );
1474
1475         //DefinciÛn de conexiÛnes entre VTK e ITK y el writer
1476         typedef itk::VTKImageToImageFilter<OutputImageType2> ConnectorType;
1477         typedef itk::ImageToVTKImageFilter<OutputImageType> ConnectorType2;
1478 //EED10JUIN2011 typedef  itk::ImageFileWriter<  OutputImageType  > WriterType;
1479
1480         ConnectorType::Pointer connector= ConnectorType::New();
1481         ConnectorType2::Pointer connector2= ConnectorType2::New();
1482
1483
1484         CastFilterType::Pointer filter=CastFilterType::New();
1485         CastFilterType2::Pointer filter2=CastFilterType2::New();
1486
1487         connector->SetInput( imagedata );
1488         filter2->SetInput(connector->GetOutput());
1489
1490         typedef   itk::CurvatureAnisotropicDiffusionImageFilter<
1491                                                                 InternalImageType,
1492                                                                 InternalImageType >  SmoothingFilterType;
1493
1494         SmoothingFilterType::Pointer smoothing = SmoothingFilterType::New();
1495
1496         typedef   itk::GradientMagnitudeRecursiveGaussianImageFilter<
1497                                                                 InternalImageType,
1498                                                                 InternalImageType >  GradientFilterType;
1499
1500         typedef   itk::SigmoidImageFilter<
1501                                                                 InternalImageType,
1502                                                                 InternalImageType >  SigmoidFilterType;
1503
1504         GradientFilterType::Pointer  gradientMagnitude = GradientFilterType::New();
1505
1506         SigmoidFilterType::Pointer sigmoid = SigmoidFilterType::New();
1507
1508         sigmoid->SetOutputMinimum(  0.0  );
1509         sigmoid->SetOutputMaximum(  255.0  );
1510
1511
1512         typedef  itk::FastMarchingImageFilter<
1513                                                                 InternalImageType,
1514                                                                 InternalImageType >    FastMarchingFilterType;
1515
1516
1517         FastMarchingFilterType::Pointer  fastMarching = FastMarchingFilterType::New();
1518
1519         typedef  itk::GeodesicActiveContourLevelSetImageFilter< InternalImageType,
1520                                         InternalImageType >    GeodesicActiveContourFilterType;
1521         GeodesicActiveContourFilterType::Pointer geodesicActiveContour =
1522                                                                                 GeodesicActiveContourFilterType::New();
1523
1524         typedef  itk::ZeroCrossingImageFilter<
1525                                                                 InternalImageType,
1526                                                                 InternalImageType >    ZeroCrossingFilterType;
1527         ZeroCrossingFilterType::Pointer zeroCrossing =
1528                                                         ZeroCrossingFilterType::New();
1529
1530         const double propagationScaling = atof( crea::wx2std(prop).c_str() );
1531
1532         geodesicActiveContour->SetPropagationScaling( propagationScaling );
1533         geodesicActiveContour->SetCurvatureScaling( 1.0 );
1534         geodesicActiveContour->SetAdvectionScaling( 1.0 );
1535
1536         geodesicActiveContour->SetMaximumRMSError( 0.02 );
1537         int it=atoi(  crea::wx2std(iter).c_str() );
1538         geodesicActiveContour->SetNumberOfIterations( it );
1539
1540         smoothing->SetInput( filter2->GetOutput() );
1541         gradientMagnitude->SetInput( smoothing->GetOutput() );
1542         sigmoid->SetInput( gradientMagnitude->GetOutput() );
1543         fastMarching->SetInput( sigmoid->GetOutput() );
1544         geodesicActiveContour->SetInput( fastMarching->GetOutput() );
1545         geodesicActiveContour->SetFeatureImage( sigmoid->GetOutput() );
1546
1547         zeroCrossing->SetInput( geodesicActiveContour->GetOutput() );
1548         //thresholder->SetInput( zeroCrossing->GetOutput() );
1549         thresholder->SetInput( geodesicActiveContour->GetOutput() );
1550         connector2->SetInput( thresholder->GetOutput()  );
1551
1552
1553         smoothing->SetTimeStep( 0.125 );
1554         smoothing->SetNumberOfIterations(  5 );
1555         smoothing->SetConductanceParameter( 9.0 );
1556
1557
1558         const double sigma = atof(  crea::wx2std(sigm).c_str() );
1559         gradientMagnitude->SetSigma(  sigma  );
1560
1561         const double alpha =  atof(  crea::wx2std(alf).c_str() );
1562         const double beta  =  atof(  crea::wx2std(bet).c_str() );
1563
1564         sigmoid->SetAlpha( alpha );
1565         sigmoid->SetBeta(  beta  );
1566
1567         typedef FastMarchingFilterType::NodeContainer  NodeContainer;
1568         typedef FastMarchingFilterType::NodeType       NodeType;
1569
1570         NodeContainer::Pointer seeds = NodeContainer::New();
1571
1572         InternalImageType::IndexType  seedPosition;
1573         seedPosition[0] = x;
1574         seedPosition[1] = y;
1575
1576         const double initialDistance = atof( crea::wx2std(distanc).c_str() );
1577
1578         NodeType node;
1579
1580         const double seedValue = - initialDistance;
1581
1582         node.SetValue( seedValue );
1583         node.SetIndex( seedPosition );
1584
1585         seeds->Initialize();
1586         seeds->InsertElement( 0, node );
1587
1588         fastMarching->SetTrialPoints( seeds );
1589
1590         fastMarching->SetSpeedConstant( 1.0 );
1591
1592         fastMarching->SetOutputSize(
1593                         connector->GetOutput()->GetBufferedRegion().GetSize() );
1594
1595         fastMarching->SetStoppingValue( 800 );
1596         try
1597     {
1598
1599         connector2->Update();
1600         vtkImageData *idata = connector2->GetOutput();
1601
1602         vtkMarchingContourFilter* cntVTK = vtkMarchingContourFilter::New( );
1603
1604         cntVTK->SetInput( idata );
1605
1606         cntVTK->SetNumberOfContours( 1 );
1607         cntVTK->SetValue( 0, 255 );
1608         cntVTK->Update( );
1609         cntVTK->UpdateInformation();
1610
1611         vtkCleanPolyData* cpd = vtkCleanPolyData::New( );
1612         cpd->SetInput( cntVTK->GetOutput( ) );
1613         cpd->Update( );
1614         cpd->UpdateInformation();
1615
1616         vtkPolyDataConnectivityFilter* conn = vtkPolyDataConnectivityFilter::New( );
1617         conn->SetExtractionModeToLargestRegion( );
1618         conn->SetInput( cpd->GetOutput( ) );
1619         conn->Update( );
1620         conn->UpdateInformation();
1621
1622         vtkStripper* vtkstripper = vtkStripper::New( );
1623         vtkstripper->SetInput( conn->GetOutput() );
1624         vtkstripper->Update();
1625         vtkstripper->UpdateInformation();
1626
1627         vtkPolyData* polyDataResult =  cntVTK->GetOutput();
1628         //std::cout<<"Points "<<polyDataResult->GetNumberOfPoints()<<std::endl;
1629         polyDataResult->Update( );
1630         polyDataResult->UpdateInformation();
1631
1632         //EED
1633                 /*
1634         ofstream myfile;
1635         myfile.open ("C:/Creatis/example.txt");
1636         myfile << "\n";
1637         polyDataResult->Print(myfile);
1638         myfile << "-------------------------------------\n";
1639         polyDataResult->GetLines()->Print(myfile);
1640         myfile.close();*/
1641
1642         cntVTK          -> Delete();
1643         cpd                     -> Delete();
1644         conn            -> Delete();
1645
1646
1647         //--Calculating control points
1648
1649         std::vector<double> vecX;
1650         std::vector<double> vecY;
1651         std::vector<double> vecXo;
1652         std::vector<double> vecYo;
1653         std::vector<double>::iterator vecXoi;
1654         std::vector<double>::iterator vecYoi;
1655         std::vector<double> vecZ;
1656
1657         std::vector<double> vecCtrlPointX;
1658         std::vector<double> vecCtrlPointY;
1659         std::vector<double> vecCtrlPointZ;
1660
1661
1662         double *p;
1663         double xAct=0;
1664         double yAct=0;
1665         int ii,size=polyDataResult->GetNumberOfPoints();
1666         ofstream myfile;
1667         myfile.open ("C:/Creatis/example2.txt");
1668
1669         size=polyDataResult->GetNumberOfPoints();
1670         for (ii=0;ii<size;ii++)
1671         {
1672                 if(ii==0)
1673                 {
1674                         xAct=x;
1675                         yAct=y;
1676                 }
1677                 p       = polyDataResult->GetPoint(ii);
1678                 double x=p[0];
1679                 double y=p[1];
1680                 /*if(fabs(yAct-y)>20)
1681                 {
1682                         if((xAct-x)>1 || (xAct-x)<-1)
1683                         {
1684                         vecX.push_back( p[0] );
1685                         vecY.push_back( p[1] );
1686                         myfile <<p[0]<<","<<p[1]<<"\n";
1687                         std::cout<<" x Anterior "<<xAct<<" x actual "<<x<<std::endl;
1688                 std::cout<<" y Anterior "<<yAct<<" y actual "<<y<<std::endl;
1689                 std::cout<<" x "<<p[0]<<" y "<<p[1]<<std::endl;
1690                         vecZ.push_back( 900 );
1691                         xAct=x;
1692                         yAct=y;
1693                         }
1694                         else
1695                         {
1696                                 vecXo.push_back(p[0]);
1697                                 vecYo.push_back(p[1]);
1698                         }
1699
1700                 }
1701                 else*/ if(fabs(xAct-x)>11)
1702                 {
1703                         vecXo.push_back(p[0]);
1704                         vecYo.push_back(p[1]);
1705                 }
1706                 else
1707                 {
1708                 vecX.push_back( p[0] );
1709                 myfile <<p[0]<<","<<p[1]<<"\n";
1710                 //std::cout<<" x Anterior "<<xAct<<" x actual "<<x<<std::endl;
1711                 //std::cout<<" y Anterior "<<yAct<<" y actual "<<y<<std::endl;
1712                 //std::cout<<" x "<<p[0]<<" y "<<p[1]<<std::endl;
1713                 vecY.push_back( p[1] );
1714                 vecZ.push_back( 900 );
1715                 xAct=x;
1716                 yAct=y;
1717                 }
1718
1719
1720         }
1721
1722         while(!vecXo.empty())
1723         {
1724                 vecX.push_back(vecXo.back());
1725                 //std::cout<<" x Siguiente "<<vecXo.back();
1726                 vecXo.pop_back();
1727                 vecZ.push_back( 900 );
1728         }
1729         while(!vecYo.empty())
1730         {
1731                 vecY.push_back(vecYo.back());
1732                         vecYo.pop_back();
1733         }
1734         myfile.close();
1735
1736         /*for(int l=0;l<vecX.size();l++)
1737         {
1738                 if(l==0)
1739                 {
1740             vecXo.push_back(p[0]);
1741                         vecYo.push_back(p[1]);
1742                 }
1743                 else
1744                 {
1745                         if(vecXoi[l-1]==)
1746                         {
1747                         }
1748                 }
1749
1750         }*/
1751
1752         ExtractControlPoints2D *extractcontrolpoints2d = new ExtractControlPoints2D();
1753
1754         extractcontrolpoints2d->SetContour( &vecX , &vecY , &vecZ );
1755
1756         int method=2;
1757         if (method==0){
1758                 extractcontrolpoints2d->GetInitialControlPoints( &vecCtrlPointX , &vecCtrlPointY , &vecCtrlPointZ );
1759         }
1760         else if (method==1){
1761                 extractcontrolpoints2d->GetControlPoints(  &vecCtrlPointX , &vecCtrlPointY , &vecCtrlPointZ );
1762         }
1763         else if (method==2){
1764                 extractcontrolpoints2d->SetSamplingControlPoints( 15 );
1765                 extractcontrolpoints2d->GetSamplingControlPoints(  &vecCtrlPointX , &vecCtrlPointY , &vecCtrlPointZ );
1766         }
1767         //--Adding contour to the system
1768
1769         std::vector<int> actualInstantVector;
1770         _instantPanel->getInstant( actualInstantVector );
1771         actualInstantVector[1]=z;
1772
1773         int j,sizeCtrPt = vecCtrlPointX.size();
1774
1775         manualBaseModel *manModelContour =  kernelManager->factoryManualContourModel( typeofcontour );
1776         manModelContour->SetNumberOfPointsSpline( ((sizeCtrPt/100)+1)*100 );
1777         if (sizeCtrPt>=3){
1778                 for (j=0 ; j<sizeCtrPt ; j++)
1779                 {
1780                         manModelContour->AddPoint( vecCtrlPointX[j] , vecCtrlPointY[j] , vecCtrlPointZ[j]  );
1781                 } // for
1782                 std::string theName;
1783                 //theName = _modelManager->createOutline( manModelContour, actualInstantVector );
1784                 theName = kernelManager->createOutline( manModelContour, actualInstantVector );
1785                 bool addedModel = theName.compare("") != 0;
1786                 if( addedModel )
1787                 {
1788                         double spc[3];//Si no hay imagen pero hay contornos que spacing se pone por default
1789                         _theViewPanel->getSpacing(spc);
1790                         //Adding the manualContourControler to interface objects structure
1791                         //Adding the manualViewContour to interface objects structure
1792                         //_theViewPanel->getSceneManager()->setControlActiveStateOfALL( false );//This call is being done here because if the ROI is created underneath the previously created ROIS will still be active.
1793                         _theViewPanel->configureViewControlTo(theName, manModelContour, spc, typeofcontour);
1794                         //_theViewPanel->getSceneManager()->configureViewControlTo( theName, manModelContour,spc, typeofcontour ) ;
1795                 }       // if addedModel
1796         } // if sizeCtrPt
1797
1798
1799 /*
1800 //EED10JUIN2011
1801                  WriterType::Pointer writer = WriterType::New();
1802          CastFilterType3::Pointer caster = CastFilterType3::New();
1803
1804                  caster->SetInput( gradientMagnitude->GetOutput() );
1805                  writer->SetInput( caster->GetOutput() );
1806                  writer->SetFileName("Gradient Magnitude.png");
1807                  caster->SetOutputMinimum(   0 );
1808                  caster->SetOutputMaximum( 255 );
1809                  writer->Update();
1810
1811                  CastFilterType3::Pointer caster2 = CastFilterType3::New();
1812                  WriterType::Pointer writer2 = WriterType::New();
1813
1814                  caster2->SetInput( sigmoid->GetOutput() );
1815                  writer2->SetInput( caster2->GetOutput() );
1816                  writer2->SetFileName("Sigmoid.png");
1817                  caster2->SetOutputMinimum(   0 );
1818                  caster2->SetOutputMaximum( 255 );
1819                  writer2->Update();
1820
1821                  CastFilterType3::Pointer caster3 = CastFilterType3::New();
1822                  WriterType::Pointer writer3 = WriterType::New();
1823
1824                  caster3->SetInput( fastMarching->GetOutput() );
1825                  writer3->SetInput( caster3->GetOutput() );
1826                  writer3->SetFileName("FastMarching.bmp");
1827                  caster3->SetOutputMinimum(   0 );
1828                  caster3->SetOutputMaximum( 255 );
1829                  writer3->Update();
1830
1831                  CastFilterType3::Pointer caster4 = CastFilterType3::New();
1832                  WriterType::Pointer writer4 = WriterType::New();
1833
1834                  caster4->SetInput( geodesicActiveContour->GetOutput() );
1835                  writer4->SetInput( caster4->GetOutput() );
1836                  writer4->SetFileName("GeodesicActiveContour.png");
1837                  caster4->SetOutputMinimum(   0 );
1838                  caster4->SetOutputMaximum( 255 );
1839                  writer4->Update();
1840
1841                  CastFilterType3::Pointer caster5 = CastFilterType3::New();
1842                  WriterType::Pointer writer5 = WriterType::New();
1843
1844                  caster5->SetInput( zeroCrossing->GetOutput() );
1845                  writer5->SetInput( caster5->GetOutput() );
1846                  writer5->SetFileName("ZeroCrossing.bmp");
1847                  caster5->SetOutputMinimum(   0 );
1848                  caster5->SetOutputMaximum( 255 );
1849                  writer5->Update();
1850 */
1851     }
1852   catch( itk::ExceptionObject & excep )
1853     {
1854     std::cerr << "Exception caught !" << std::endl;
1855     std::cerr << excep << std::endl;
1856     }
1857 }
1858
1859 void wxContourMainFrame::onSegmentationOneSlice(int isovalue,int sampling,int method){
1860
1861         //JCP 20-10-08 Undo redo implementation
1862         saveState();
1863         //JCP 20-10-08 Undo redo implementation
1864
1865         wxBusyCursor wait;
1866         int                                     x                                       = _theViewPanel->GetX();
1867         int                                     y                                       = _theViewPanel->GetY();
1868         int                                     z                                       = _theViewPanel->GetZ();
1869         SegmentationOneSlice( x,y,z,isovalue, sampling, method );
1870         RefreshInterface();
1871 }
1872
1873
1874 void wxContourMainFrame::SegmentationOneSlice( int x, int y, int z, int isovalue, int sampling, int method )
1875 {
1876         int typeofcontour = 1;
1877         //--Extracting Contour
1878         //vtkImageData  *imagedata      = _theViewPanel->getSceneManager()->GetImageData();
1879         vtkImageData    *imagedata      = getImageData();
1880 //              double                  *range          = imagedata->GetScalarRange();
1881 //              double                  thr                     = 1;
1882
1883         vtkImageReslice *imageReslice = vtkImageReslice::New();
1884 //EED
1885 //              double spc[3];
1886 //              imagedata->GetSpacing(spc);
1887 //              x = x*spc[0];
1888 //              y = y*spc[1];
1889 //              z = z*spc[3];
1890
1891         imageReslice->SetInput( imagedata );
1892         imageReslice->SetInformationInput(imagedata);
1893         imageReslice->SetResliceAxesDirectionCosines(1,0,0, 0,1,0 ,0,0,1);
1894         imageReslice->SetResliceAxesOrigin(0,0,z);
1895         imageReslice->SetOutputDimensionality(2);
1896         imageReslice->SetInterpolationModeToLinear();
1897
1898         imagedata = imageReslice->GetOutput();
1899         imagedata->Update();
1900         imagedata->UpdateInformation();
1901
1902         vtkContourFilter* cntVTK = vtkContourFilter::New( );
1903         cntVTK->SetInput( imagedata );
1904
1905         cntVTK->SetNumberOfContours( 1 );
1906         //cntVTK->SetValue( 0, vmin );
1907 //              cntVTK->SetValue( 0, (range[1]*thr/100) );
1908         cntVTK->SetValue( 1, isovalue );
1909 //      cntVTK->SetValue( 1, vmax );
1910         cntVTK->Update( );
1911         cntVTK->UpdateInformation();
1912
1913         vtkCleanPolyData* cpd = vtkCleanPolyData::New( );
1914         cpd->SetInput( cntVTK->GetOutput( ) );
1915         cpd->ConvertLinesToPointsOff( );
1916         cpd->Update( );
1917         cpd->UpdateInformation();
1918
1919         vtkPolyDataConnectivityFilter* conn = vtkPolyDataConnectivityFilter::New( );
1920         conn->SetExtractionModeToClosestPointRegion( );
1921         //conn->SetMaxRecursionDepth( 3000 );
1922
1923         conn->SetInput( cpd->GetOutput( ) );
1924
1925         conn->SetClosestPoint( x, y, 0 );
1926         conn->Update( );
1927         conn->UpdateInformation();
1928
1929         vtkCleanPolyData* cpd2 = vtkCleanPolyData::New( );
1930         cpd2->SetInput( conn->GetOutput( ) );
1931         cpd2->Update();
1932         cpd2->UpdateInformation();
1933
1934         vtkStripper* vtkstripper = vtkStripper::New( );
1935         vtkstripper->SetInput( cpd2->GetOutput() );
1936         vtkstripper->Update();
1937         vtkstripper->UpdateInformation();
1938
1939
1940         vtkPolyData* polyDataResult =  vtkstripper->GetOutput();
1941
1942         polyDataResult->Update( );
1943         polyDataResult->UpdateInformation();
1944
1945 /* EED
1946 ofstream myfile;
1947 myfile.open ("c:/temp/example.txt");
1948 myfile << "\n";
1949 polyDataResult->Print(myfile);
1950 myfile << "-------------------------------------\n";
1951 polyDataResult->GetLines()->Print(myfile);
1952 myfile.close();
1953 */
1954
1955         cntVTK          -> Delete();
1956         cpd2            -> Delete();
1957         cpd                     -> Delete();
1958         conn            -> Delete();
1959
1960
1961 //--Calculating control points
1962
1963         std::vector<double> vecX;
1964         std::vector<double> vecY;
1965         std::vector<double> vecZ;
1966
1967         std::vector<double> vecCtrlPointX;
1968         std::vector<double> vecCtrlPointY;
1969         std::vector<double> vecCtrlPointZ;
1970
1971
1972         double *p;
1973         int ii,size=polyDataResult->GetNumberOfPoints();
1974         int id;
1975         for (ii=1;ii<=size;ii++)
1976         {
1977                 id      = polyDataResult->GetLines()->GetData()->GetValue(ii);
1978                 p       = polyDataResult->GetPoint(id);
1979 //              double x=p[0];
1980 //              double y=p[1];
1981                 vecX.push_back( p[0] );
1982                 vecY.push_back( p[1] );
1983                 vecZ.push_back( 900 );
1984 //                      vecZ.push_back( p[2] );
1985         }
1986
1987
1988         ExtractControlPoints2D *extractcontrolpoints2d = new ExtractControlPoints2D();
1989         extractcontrolpoints2d->SetContour( &vecX , &vecY , &vecZ );
1990
1991 //PROOFS
1992         /*if (methodRadiobox->GetSelection()==0){
1993                 extractcontrolpoints2d->GetInitialControlPoints( &vecCtrlPointX , &vecCtrlPointY , &vecCtrlPointZ );
1994         }
1995         if (methodRadiobox->GetSelection()==1){
1996                 extractcontrolpoints2d->GetControlPoints(  &vecCtrlPointX , &vecCtrlPointY , &vecCtrlPointZ );
1997         }
1998         if (methodRadiobox->GetSelection()==2){
1999                 extractcontrolpoints2d->SetSamplingControlPoints( sampling );
2000                 extractcontrolpoints2d->GetSamplingControlPoints(  &vecCtrlPointX , &vecCtrlPointY , &vecCtrlPointZ );
2001         }*/
2002
2003         if (method==0){
2004                 extractcontrolpoints2d->GetInitialControlPoints( &vecCtrlPointX , &vecCtrlPointY , &vecCtrlPointZ );
2005         }
2006         else if (method==1){
2007                 extractcontrolpoints2d->GetControlPoints(  &vecCtrlPointX , &vecCtrlPointY , &vecCtrlPointZ );
2008         }
2009         else if (method==2){
2010                 extractcontrolpoints2d->SetSamplingControlPoints( sampling );
2011                 extractcontrolpoints2d->GetSamplingControlPoints(  &vecCtrlPointX , &vecCtrlPointY , &vecCtrlPointZ );
2012         }
2013
2014         //--Adding contour to the system
2015
2016         std::vector<int> actualInstantVector;
2017         _instantPanel->getInstant( actualInstantVector );
2018         actualInstantVector[1]=z;
2019
2020         int j,sizeCtrPt = vecCtrlPointX.size();
2021         manualBaseModel *manModelContour =  kernelManager->factoryManualContourModel( typeofcontour );
2022         manModelContour->SetNumberOfPointsSpline( ((sizeCtrPt/100)+1)*100 );
2023         if (sizeCtrPt>=3){
2024                 for (j=0 ; j<sizeCtrPt ; j++)
2025                 {
2026                         manModelContour->AddPoint( vecCtrlPointX[j] , vecCtrlPointY[j] , vecCtrlPointZ[j]  );
2027                 } // for
2028                 std::string theName;
2029                 //theName = _modelManager->createOutline( manModelContour, actualInstantVector );
2030                 theName = kernelManager->createOutline( manModelContour, actualInstantVector );
2031                 bool addedModel = theName.compare("") != 0;
2032                 if( addedModel )
2033                 {
2034                         double spc[3];//Si no hay imagen pero hay contornos que spacing se pone por default
2035                         _theViewPanel->getSpacing(spc);
2036                         //Adding the manualContourControler to interface objects structure
2037                         //Adding the manualViewContour to interface objects structure
2038                         //_theViewPanel->getSceneManager()->setControlActiveStateOfALL( false );//This call is being done here because if the ROI is created underneath the previously created ROIS will still be active.
2039                         _theViewPanel->configureViewControlTo(theName, manModelContour, spc, typeofcontour);
2040                         //_theViewPanel->getSceneManager()->configureViewControlTo( theName, manModelContour,spc, typeofcontour ) ;
2041                 }       // if addedModel
2042         } // if sizeCtrPt
2043 }
2044 int wxContourMainFrame::GetImageDataSizeZ(){
2045         return _theViewPanel->GetImageDataSizeZ();
2046 }
2047
2048 void wxContourMainFrame::GetImageDataRange(double *range){
2049         _theViewPanel->GetImageDataRange(range);
2050 }
2051
2052 void wxContourMainFrame::onSegmentationAllSlice(int minZ,int maxZ,int isovalue,int sampling,int method){
2053         //JCP 20-10-08 Undo redo implementation
2054         saveState();
2055         //JCP 20-10-08 Undo redo implementation
2056
2057         wxBusyCursor wait;
2058         int                                     x                                       = _theViewPanel->GetX();
2059         int                                     y                                       = _theViewPanel->GetY();
2060         int z;
2061         double porcent;
2062         wxString tmpString;
2063         double totalZ = maxZ-minZ+1;
2064         for( z=minZ ; z<=maxZ ; z++ )
2065         {
2066                 porcent = 100.0* (z-minZ)/totalZ;
2067                 tmpString.Printf(_T("  %d %c            %d/%d            %d"), (int)porcent , 37 , z-minZ+1, (int)totalZ,z );
2068                 interfMainPanel::getInstance()->setLabelSegmentationPanelVTK(tmpString);
2069                 //_staticTextSegmentation->SetLabel(tmpString);
2070                 SegmentationOneSlice( x,y,z,isovalue, sampling,method );
2071         }
2072         interfMainPanel::getInstance()->setLabelSegmentationPanelVTK(_T("   "));
2073         RefreshInterface();
2074 }
2075
2076
2077 //Creates a reference line to be used as the axis of the mirroring
2078 void wxContourMainFrame::referenceLine()
2079 {
2080         if (_refLineControl==NULL)
2081         {
2082                 wxBusyCursor wait;
2083                 double spc[3];
2084
2085                 vtkImageData *vtkimagedata = _theViewPanel->getImageData();
2086                 vtkimagedata->GetSpacing(spc);
2087
2088                 wxVtkBaseView * viewer2D = _theViewPanel->getWxVtkBaseView();
2089
2090                 _refLineControl = new manualLineControler();
2091                 _refLineModel   = new manualContourModelLine();
2092                 _refLineView = new manualViewLine();
2093                 _refLineView->SetModel( _refLineModel );
2094                 _refLineView->SetWxVtkBaseView( viewer2D );
2095                 _refLineView->SetRange( 2 );
2096                 _refLineView->SetZ( 1200 );
2097
2098                 _refLineView->SetSpacing(spc);
2099
2100                 _refLineView->SetColorNormalContour(0, 0, 1);
2101                 _refLineView->SetColorEditContour(0, 0.5, 0.5);
2102                 _refLineView->SetWidthLine(4);
2103
2104                 _refLineControl->SetModelView( _refLineModel , _refLineView );
2105                 vtkInteractorStyleBaseView* style = (vtkInteractorStyleBaseView*)viewer2D->GetInteractorStyleBaseView();
2106                 style->AddInteractorStyleMaracas( _refLineControl );
2107                 _refLineModel->SetCloseContour(false);
2108                 _refLineControl->CreateNewManualContour();
2109
2110 //AD: Inicializar el mirroring con una linea ya pintada
2111         /*
2112                 double z = _refLineControl->GetZ();
2113
2114                 int imageDim[3];
2115                 image->GetDimensions(imageDim);
2116                 double x = (double) imageDim[0]/2;
2117                 double y1 = (double) (imageDim[1]/2)+15;
2118                 double y2 = (double) (imageDim[1]/2)-15;
2119
2120                 _refLineControl->AddPoint(x,y1,z);
2121                 _refLineControl->AddPoint(x,y2,z);
2122                 _refLineControl->SetCompleteCreation(true);
2123
2124                 _refLineModel->AddPoint(x,y1,z);
2125                 _refLineModel->AddPoint(x,y2,z);
2126                 _refLineModel->UpdateSpline();
2127
2128                 _refLineView->UpdateViewPoint(0);
2129                 _refLineView->UpdateViewPoint(1);
2130         */
2131
2132                 _refLineControl->SetActive(true);
2133                 _refLineView->RefreshContour();
2134         }
2135 }
2136
2137 //Hides the referenceLine
2138 void wxContourMainFrame::refLineHide()
2139 {
2140         if (_refLineControl!=NULL)
2141         {
2142                 if (_refLineControl->GetActive())
2143                 {
2144                         _refLineView->RemoveCompleteContourActor();
2145                         _refLineControl->SetEditable(false);
2146                         _refLineControl->SetActive(false);
2147
2148                         RefreshInterface();
2149                 }
2150         }
2151 }
2152
2153 //Shows the referenceLine
2154 void wxContourMainFrame::refLineShow()
2155 {
2156         if (_refLineControl!=NULL)
2157         {
2158                 if (_refLineControl->GetActive()==false)
2159                 {
2160                         wxVtkBaseView * viewer2D = _theViewPanel->getWxVtkBaseView();
2161
2162                         _refLineView->SetModel( _refLineModel );
2163                         _refLineView->SetWxVtkBaseView( viewer2D );
2164                         _refLineView->SetRange( 2 );
2165                         _refLineView->SetZ( 1200 );
2166
2167                         _refLineControl->SetModelView( _refLineModel , _refLineView );
2168                         vtkInteractorStyleBaseView* style = (vtkInteractorStyleBaseView*)viewer2D->GetInteractorStyleBaseView();
2169                         style->AddInteractorStyleMaracas( _refLineControl );
2170                         _refLineControl->CreateNewManualContour();
2171                         _refLineControl->SetActive(true);
2172                         _refLineView->RefreshContour();
2173
2174                         RefreshInterface();
2175                 }
2176         }
2177 }
2178
2179 void wxContourMainFrame::refLineChangeWidth(int width)
2180 {
2181         _refLineView->SetWidthLine(width);
2182         _refLineView->RefreshContour();
2183
2184         RefreshInterface();
2185 }
2186
2187
2188 void wxContourMainFrame::onMirror()
2189 {
2190         //AD:02-09
2191         std::vector<std::string> currentSelection = _theViewPanel->getSelectedObjects();
2192         std::vector<std::string> filterCurrentSelection;
2193
2194         std::vector<int> tempVector;
2195         _instantPanel->getInstant( tempVector );
2196     _performingOperation->reset();
2197         _performingOperation->setStartCommand( COPY );
2198         _performingOperation->setStartOperationInstantVector( tempVector );
2199         _performingOperation->setKeyNamesOperationElems( currentSelection );
2200
2201         char theStartCommand = _performingOperation->getStartCommand();
2202         if (  theStartCommand == COPY )
2203         {
2204                 //JCP 20-10-08 Undo redo implementation
2205                 saveState();
2206                 //JCP 20-10-08 Undo redo implementation
2207                 std::vector<int> tempVector;
2208                 _instantPanel->getInstant( tempVector );
2209                 _performingOperation->setEndOperationInstantVector ( tempVector );
2210                 std::vector<std::string> elems = _performingOperation->getKeyNamesOperationElems();
2211                 int i,size = elems.size();
2212                 for( i=0; i<size; i++ )
2213                 {
2214                         createMirrorContourOf( elems[i], tempVector, i>0 );
2215                 }
2216         }
2217
2218         //deleteContour( _refName );
2219         //_refName = "";
2220 }
2221
2222
2223 void wxContourMainFrame::showAxis(bool show)
2224 {
2225         _theViewPanel->SetVisibleAxis(show);
2226         _theViewPanel->Refresh();
2227 }
2228
2229
2230 void wxContourMainFrame::onRigidPressed(){
2231         std::vector<std::string> currentSelection = _theViewPanel->getSelectedObjects();
2232         int elementsSelected = currentSelection.size();
2233
2234         if ( elementsSelected >= 1 ){
2235                 //JCP 20-10-08 Undo redo implementation
2236                 saveState();
2237                 //JCP 20-10-08 Undo redo implementation
2238
2239                 std::vector<int> tempVector;
2240                 _instantPanel->getInstant( tempVector );
2241                 Instant instant(&tempVector);
2242
2243                 int i , size=currentSelection.size();
2244                 for ( i=0 ; i<size ; i++ )
2245                 {
2246                         kernelManager->changeContourOfManager(currentSelection[i], &instant);
2247                 } // i
2248         }
2249 }
2250
2251 void wxContourMainFrame::onWidthOfContour(double width){
2252
2253         _theViewPanel->removeSceneContours();
2254         _theViewPanel->SetWidthContour(width);
2255
2256         //_theViewPanel->getSceneManager()->SetWidthContour( width );
2257
2258         RefreshInterface();
2259 }
2260
2261 int wxContourMainFrame::getColorWindow()
2262 {
2263         /*
2264         double range[2];
2265         vtkImageData * img = getImageData();
2266         img->GetScalarRange(range);
2267
2268         std::cout<<"Val 1: "<<range[0]<<" Val 2: "<<range[1]<<std::endl;
2269
2270         return (int)range[1];
2271         */
2272         return _theViewPanel->getColorWindow();
2273 }
2274
2275 int wxContourMainFrame::getWindowLevel()
2276 {
2277         /*
2278         double range[2];
2279         vtkImageData * img = getImageData();
2280         img->GetScalarRange(range);
2281
2282         std::cout<<"Val 1: "<<range[0]<<" Val 2: "<<range[1]<<std::endl;
2283
2284         return (int)range[1];
2285         */
2286         return _theViewPanel->getWindowLevel();
2287 }
2288
2289 void wxContourMainFrame::onBrigthnessColorWindowLevel(int colorwindow,int windowlevel){
2290         _theViewPanel->onBrigthnessColorWindowLevel(colorwindow, windowlevel);
2291
2292         RefreshInterface();
2293 }
2294
2295 void wxContourMainFrame::onInterpolation(bool interpolate){
2296         _theViewPanel->onInterpolation(interpolate);
2297         RefreshInterface();
2298 }
2299
2300 void wxContourMainFrame::onChangeInstant(std::string name,int actual){
2301         _instantPanel->setConceptValue( name, actual );
2302 }
2303
2304
2305 void wxContourMainFrame::resetAppend(){
2306         kernelManager->resetAppend();
2307
2308 }
2309
2310
2311 void wxContourMainFrame::onSpreadAdd(){
2312         std::vector<double> vecX;
2313         std::vector<double> vecY;
2314         std::vector<double> vecZ;
2315         _theViewPanel->GetPointsOfActualContour(&vecX , &vecY , &vecZ );
2316         std::vector<int> tempVector;
2317         _instantPanel->getInstant( tempVector );
2318         std::string val = kernelManager->onSpreadAdd(&vecX , &vecY , &vecZ, tempVector);
2319         interfMainPanel::getInstance()->appendStringSpread(val);
2320 }
2321
2322
2323 void wxContourMainFrame::onSpreadAddAll(){
2324 //EED02
2325         std::vector<int> tempVector;
2326         _instantPanel->getInstant( tempVector );
2327         int minZ,maxZ;
2328     minZ        = 0;
2329     maxZ        = interfMainPanel::getInstance()->GetImageDataSizeZ();
2330         int z;
2331         int sizeLstContourThings;
2332         for ( z=minZ ; z<=maxZ ; z++ )
2333         {
2334                 tempVector[1]=z;
2335                 Instant instant(&tempVector);
2336                 std::vector<ContourThing**> lstContourThings = kernelManager->getOutlinesAtInstant( &instant );
2337                 sizeLstContourThings = lstContourThings.size();
2338                 if (sizeLstContourThings>=1)
2339         {
2340             std::vector<double> vecX;
2341             std::vector<double> vecY;
2342             std::vector<double> vecZ;
2343             ContourThing **contourthing = lstContourThings[0];
2344                         manualBaseModel *cModel                         =  (*contourthing)->getModel();
2345                         int i,size = cModel->GetNumberOfPointsSpline();
2346                         double x,y,z;
2347                         for (i=0; i<size; i++)
2348                         {
2349                                 cModel->GetSpline_i_Point(i, &x, &y, &z);
2350                                 vecX.push_back(x);
2351                                 vecY.push_back(y);
2352                                 vecZ.push_back(z);
2353                         } // for i
2354             std::string val = kernelManager->onSpreadAdd(&vecX , &vecY , &vecZ, tempVector);
2355             interfMainPanel::getInstance()->appendStringSpread(val);
2356         }// if sizeLstContourThings
2357     } // for z
2358 }
2359
2360
2361 void wxContourMainFrame::onSpreadGo(int type){
2362         //JCP 20-10-08 Undo redo implementation
2363         saveState();
2364         //JCP 20-10-08 Undo redo implementation
2365         wxBusyCursor wait;
2366         std::vector<double> vecCtrlPointX;
2367         std::vector<double> vecCtrlPointY;
2368         std::vector<double> vecCtrlPointZ;
2369         double  minZ,maxZ;
2370         int z;
2371
2372         std::vector<int> tempVector;
2373         _instantPanel->getInstant( tempVector );
2374 //              tempVector[1];
2375
2376         kernelManager->getMaxMinZ(&minZ,&maxZ);
2377 //JSTG_16-07-08_----------------------------------------------------------------
2378         //_contourPropagation->setInterpolationNumber(maxZ-minZ+1);
2379         kernelManager->CalculeSplinePropagation();
2380
2381         double          totalZ = maxZ-minZ+1;
2382         double          porcent;
2383         wxString        tmpString;
2384 //--------------------------------------------------------------------
2385         for ( z=(int)minZ ; z<=(int)maxZ ; z++ )
2386         {
2387                 porcent = 100.0* (z-minZ)/totalZ;
2388                 int numero = (int)(z-minZ+1)/(int)totalZ;
2389                 std::string stringtemp = "  "+kernelManager->intToString(porcent)+"%            "+kernelManager->intToString(numero)+"            "+kernelManager->intToString(z);
2390
2391                 interfMainPanel::getInstance()->setStringSpread(stringtemp);
2392
2393                 int typeofcontour = 1;
2394                 std::string theName;
2395                 manualBaseModel* manModelContour = kernelManager->GetPoints(z, type, &vecCtrlPointX,&vecCtrlPointY,&vecCtrlPointZ, theName,typeofcontour, tempVector);
2396
2397                 if( manModelContour!=NULL ){
2398                         double spc[3];//Si no hay imagen pero hay contornos que spacing se pone por default
2399                         this->_theViewPanel->getSpacing(spc);
2400                         //Adding the manualContourControler to interface objects structure
2401                         //Adding the manualViewContour to interface objects structure
2402                         //_theViewPanel->getSceneManager()->setControlActiveStateOfALL( false );//This call is being done here because if the ROI is created underneath the previously created ROIS will still be active.
2403                         _theViewPanel->configureViewControlTo( theName, manModelContour,spc,typeofcontour ) ;
2404                 } // if addedModel
2405         }
2406         if(z > maxZ){
2407                 porcent = 100.0;
2408                 int numero = (int)(z-minZ+1)/(int)totalZ;
2409                 std::string stringtemp = "  "+kernelManager->intToString(porcent)+"%            "+kernelManager->intToString(numero)+"            "+kernelManager->intToString(z);
2410
2411                 interfMainPanel::getInstance()->setStringSpread(stringtemp);
2412         }// for z
2413         //RefreshInterface();
2414 }
2415
2416 void wxContourMainFrame::getInstantVector(std::vector<int>& tempVector){
2417
2418 }
2419
2420 std::vector<std::string> wxContourMainFrame::getOutlinesName(int slide){
2421         std::vector<int> tempVector;
2422         _instantPanel->getInstant(tempVector);
2423         //Asignation of slide number should be different ex by name
2424         tempVector[1]=slide;
2425         return kernelManager->getOutlinesNameAtInstant(tempVector);
2426 }
2427
2428
2429 void wxContourMainFrame::SetScalarRange(int grayRangeMin, int grayRangeMax)
2430 {
2431         _contourextractdata->SetScalarRange(grayRangeMin,grayRangeMax);
2432 }
2433
2434
2435 void wxContourMainFrame::onInformationContourLabels(int typeContourGroup,int selection,int minimumZ,int maximumZ,int grayRangeMin, int grayRangeMax)
2436 {
2437 //EED01Juillet2009      GenerateContourExtractData();
2438
2439         wxString tempString;
2440         int maxContourGroup     =       0;
2441
2442         _contourextractdata ->SetTypeOperation( typeContourGroup % 3 );
2443
2444         std::vector<manualBaseModel*> lstManConMod;
2445         std::vector<manualBaseModel*> lstManConModTmp;
2446         std::vector<manualBaseModel*> lstManConModExp;
2447         std::vector<double> pLstValue;
2448         std::vector<double> pLstValuePosX;
2449         std::vector<double> pLstValuePosY;
2450         std::vector<double> pLstValuePosZ;
2451
2452         int             resultSize;
2453         int             resultGrayRangeCount;
2454         double  resultMin;
2455         double  resultMax;
2456         double  resultAverage;
2457         double  resultStandardeviation;
2458
2459         std::vector<int> tempVector;
2460         _instantPanel->getInstant( tempVector );
2461
2462 //EED01Juillet2009      vtkImageData *imagedata = _theViewPanel->getImageData();
2463 //      int sizeZ = _theViewPanel->GetImageDataSizeZ();
2464         int z;
2465         int ii,sizeLstContourThings;
2466
2467
2468         int minZ,maxZ;
2469         double totalZ;
2470         double porcent;
2471         wxString tmpString;
2472
2473
2474         if (selection==0 ) // actual slice
2475         {
2476                 int actualSlice = tempVector[1];
2477                 minZ    = actualSlice;
2478                 maxZ    = actualSlice;
2479         }       else  {  // slice range
2480                 minZ    = minimumZ;
2481                 maxZ    = maximumZ;
2482         }
2483
2484
2485         totalZ  = maxZ-minZ+1;
2486 //EED01Juillet2009      _contourextractdata->SetImage( imagedata);
2487
2488         _contourextractdata->InitVolumeStatistics();
2489
2490 // For each slice..
2491         for ( z=minZ ; z<=maxZ ; z++ )
2492         {
2493
2494                 porcent = 100.0* (z-minZ)/totalZ;
2495                 tmpString.Printf(_T("  %d %c            %d/%d             %d"), (int)porcent , 37 , z-minZ+1, (int)totalZ ,z);
2496
2497                 interfMainPanel::getInstance()->setStringInfoPanel(tmpString);
2498                 //_staticTextInformation->SetLabel(tmpString);
2499
2500                 //Extraction data from contours of each slice
2501                 _contourextractdata->SetZtoBeAnalys(z);
2502
2503                 tempVector[1]=z;
2504                 Instant instant(&tempVector);
2505                 std::vector<ContourThing**> lstContourThings = kernelManager->getOutlinesAtInstant( &instant );
2506                 sizeLstContourThings = lstContourThings.size();
2507
2508                 lstManConMod.clear();
2509                 for (ii=0 ; ii<sizeLstContourThings ; ii++)
2510                 {
2511                         ContourThing **contourthing = lstContourThings[ii];
2512                         lstManConMod.push_back( (*contourthing)->getModel() );
2513                 }
2514
2515                 lstManConModExp =  kernelManager->ExploseEachModel( lstManConMod );
2516
2517                 tempString.Printf(_T("%d - %d"),z, sizeLstContourThings);
2518                 interfMainPanel::getInstance()->setRowLabelInfoPanel(z, tempString);
2519                 //_grid->SetRowLabelValue(z, tempString );
2520 //EED004
2521                 int iContourGroup,sizeContourGroup;
2522                 if (typeContourGroup==3) // contour separete
2523                 {
2524                         sizeContourGroup=lstManConModExp.size();
2525                         if ( maxContourGroup<sizeContourGroup )
2526                         {
2527                                 maxContourGroup=sizeContourGroup;
2528                         }
2529                 } else {  // contour AND OR XOR
2530                         sizeContourGroup=1;
2531                         maxContourGroup=1;
2532                 }
2533
2534                 int tmpIntA;
2535
2536                 for( iContourGroup=0 ; iContourGroup<sizeContourGroup ; iContourGroup++ ){
2537                         lstManConModTmp.clear();
2538
2539
2540
2541                         if (typeContourGroup==3) // contour separete
2542                         {
2543                                 lstManConModTmp.push_back( lstManConModExp[iContourGroup]);
2544                         } else {  // contour AND OR XOR
2545                                 lstManConModTmp = lstManConModExp;
2546                         }
2547
2548                         _contourextractdata->SetLstManualContourModel( lstManConModTmp );
2549                         _contourextractdata->SetScalarRange(grayRangeMin,grayRangeMax);
2550
2551                         pLstValue.clear();
2552                         pLstValuePosX.clear();
2553                         pLstValuePosY.clear();
2554                         pLstValuePosZ.clear();
2555
2556
2557                         int numberOfPixels;
2558                         _contourextractdata->GetValuesInsideCrown(  &numberOfPixels,
2559                                                                                                                 &pLstValue,
2560                                                                                                                 &pLstValuePosX,
2561                                                                                                                 &pLstValuePosY,
2562                                                                                                                 &pLstValuePosZ);
2563
2564                         resultSize=numberOfPixels;
2565                         // Statistics of each slice.
2566                         _contourextractdata->Statistics( &pLstValue,
2567                                                                                         grayRangeMin,
2568                                                                                         grayRangeMax,
2569                                                                                         &resultGrayRangeCount,
2570                                                                                         &resultSize,
2571                                                                                         &resultMin,
2572                                                                                         &resultMax,
2573                                                                                         &resultAverage,
2574                                                                                         &resultStandardeviation);
2575
2576                         if (interfMainPanel::getInstance()->getNumberColsInformationPanel()<_numberOfVariablesStatistics*(iContourGroup+1)  )
2577                         {
2578                                 interfMainPanel::getInstance()->appendColsInformationPanel(_numberOfVariablesStatistics);
2579                         }
2580
2581                         tmpIntA=_numberOfVariablesStatistics*iContourGroup ;
2582
2583                         tempString.Printf(_T("%d"),numberOfPixels);
2584
2585                         interfMainPanel::getInstance()->setCellValueInfoPanel(z, tmpIntA, tempString);
2586
2587                         tempString.Printf(_T("%d"),resultGrayRangeCount);
2588                         interfMainPanel::getInstance()->setCellValueInfoPanel(z, tmpIntA+1, tempString);
2589
2590                         tempString.Printf(_T("%f"),resultMin);
2591                         interfMainPanel::getInstance()->setCellValueInfoPanel(z, tmpIntA+2, tempString);
2592
2593                         tempString.Printf(_T("%f"),resultMax);
2594                         interfMainPanel::getInstance()->setCellValueInfoPanel(z, tmpIntA+3, tempString);
2595
2596                         tempString.Printf(_T("%f"),resultAverage);
2597                         interfMainPanel::getInstance()->setCellValueInfoPanel(z, tmpIntA+4, tempString);
2598
2599                         tempString.Printf(_T("%f"),resultStandardeviation);
2600                         interfMainPanel::getInstance()->setCellValueInfoPanel(z, tmpIntA+5, tempString);
2601
2602
2603                 } // for iContourGroup
2604         } // for z
2605
2606         // Print Volume Statistics
2607
2608
2609         int             vol_rCountRange;
2610         int             vol_rsize;
2611         double  vol_minValue;
2612         double  vol_maxValue;
2613         double  vol_average;
2614         double  vol_standardeviation;
2615
2616         if (selection!=0 ) // actual slice
2617         {
2618
2619                 _contourextractdata->GetVolumeStatistics(&vol_rCountRange, &vol_rsize,
2620                                                                                                  &vol_minValue, &vol_maxValue,
2621                                                                                                  &vol_average, &vol_standardeviation);
2622
2623                 interfMainPanel::getInstance()->setRowLabelInfoPanel(maxZ+2, _T("Total:"));
2624
2625                 tempString.Printf(_T("%d"),vol_rsize);
2626                 interfMainPanel::getInstance()->setCellValueInfoPanel(maxZ+2, 0, tempString);
2627
2628                 tempString.Printf(_T("%d"),vol_rCountRange);
2629                 interfMainPanel::getInstance()->setCellValueInfoPanel(maxZ+2, 1, tempString);
2630
2631                 tempString.Printf(_T("%f"),vol_minValue);
2632                 interfMainPanel::getInstance()->setCellValueInfoPanel(maxZ+2, 2, tempString);
2633
2634                 tempString.Printf(_T("%f"),vol_maxValue);
2635                 interfMainPanel::getInstance()->setCellValueInfoPanel(maxZ+2, 3, tempString);
2636
2637                 tempString.Printf(_T("%f"),vol_average);
2638                 interfMainPanel::getInstance()->setCellValueInfoPanel(maxZ+2, 4, tempString);
2639
2640                 tempString.Printf(_T("%f"),vol_standardeviation);
2641                 interfMainPanel::getInstance()->setCellValueInfoPanel(maxZ+2, 5, tempString);
2642         }
2643         //-----------------------------------------
2644
2645         int iTitleGroup;
2646         wxString tmpTitleString;
2647         int tmpIntB;
2648         for ( iTitleGroup=0 ; iTitleGroup<maxContourGroup ; iTitleGroup++ )
2649         {
2650                 tmpIntB =_numberOfVariablesStatistics*iTitleGroup;
2651                 tmpTitleString.Printf(_T("%d-Size Data"),iTitleGroup);
2652                 interfMainPanel::getInstance()->setColLableInfoPanel(tmpIntB + 0, tmpTitleString);
2653
2654                 interfMainPanel::getInstance()->setColLableInfoPanel(tmpIntB + 0, tmpTitleString );
2655                 interfMainPanel::getInstance()->setColLableInfoPanel( tmpIntB + 1, _T("Size Range") );
2656                 interfMainPanel::getInstance()->setColLableInfoPanel( tmpIntB + 2, _T("Min") );
2657                 interfMainPanel::getInstance()->setColLableInfoPanel( tmpIntB + 3, _T("Max") );
2658                 interfMainPanel::getInstance()->setColLableInfoPanel( tmpIntB + 4, _T("Average") );
2659                 interfMainPanel::getInstance()->setColLableInfoPanel( tmpIntB + 5, _T("St.Dev.") );
2660                 interfMainPanel::getInstance()->setColLableInfoPanel( tmpIntB + 6, _T(" ") );
2661         }// for title
2662         interfMainPanel::getInstance()->setStringInfoPanel( _T("") );
2663 }
2664
2665 //AD: 29-05-09
2666 void wxContourMainFrame::onSaveResults(std::string directory,std::string namefile, std::string filename,
2667         int typeContourGroup, int selection, int minZ, int maxZ, bool XYZValues, bool contourImage, bool statistics)
2668 {
2669         if (XYZValues)
2670         {
2671                 SaveValuesXYZ( directory , namefile, typeContourGroup );
2672         }
2673
2674         if (contourImage)
2675         {
2676                 vtkImageData * mask;
2677                 vtkImageData * value;
2678                 this->getMaskValue(&mask, &value, typeContourGroup,selection,minZ,maxZ);
2679                 this->SaveImageResult( directory , namefile, mask, value);
2680         }
2681
2682         if (statistics)
2683         {
2684                 std::ostringstream name;
2685                 name << filename << ".xls";
2686
2687
2688                 FILE *pFile=fopen(name.str().c_str(),"w+");
2689
2690
2691                 wxString tmpString;
2692                 int i,j,maxX;
2693
2694 //              int sizeZ = _theViewPanel->GetImageDataSizeZ();
2695 //              int maxY=sizeZ+2;
2696
2697                 maxX= interfMainPanel::getInstance()->getNumberColsInformationPanel();//this->_grid->GetNumberCols();
2698
2699                 // -- Title --
2700                 int iTitle,sizeTitle = (maxX / _numberOfVariablesStatistics);
2701                 for ( iTitle=0; iTitle<sizeTitle ; iTitle++)
2702                 {
2703                                 // fprintf(pFile,"-- \t %d-Size \t SizeRange \t Min \t Max \t Ave \t StDv \t" , iTitle,tmpString.c_str() );
2704                                 fprintf(pFile,"slice\t %d-Size \t SizeRange \t Min \t Max \t Ave \t StDv \t" , iTitle );
2705                 }
2706                 fprintf(pFile,"\n\n" );
2707
2708
2709
2710                 if (selection==0 ) // actual slice
2711                 {
2712                         std::vector<int> tempVector;
2713                         _instantPanel->getInstant( tempVector );
2714                         int actualSlice = tempVector[1];
2715                         minZ    = actualSlice;
2716                         maxZ    = actualSlice;
2717                 }
2718
2719                 // Stadistics...
2720                 for ( j=minZ; j<=maxZ ; j++)
2721                 {
2722                         fprintf(pFile,"%d\t" , j );
2723                         for (i=0 ; i<maxX ; i++){
2724                                 tmpString = interfMainPanel::getInstance()->getCellValue(j, i);//_grid->GetCellValue( j , i );
2725                                 fprintf(pFile,"%s\t" , (const char *)(tmpString.mb_str()) );
2726                         } // for i
2727                         fprintf(pFile,"\n"  );
2728                 } // for j
2729
2730
2731                 // Total of stadistics.....
2732                 if (selection!=0)
2733                 {
2734                         fprintf(pFile,"\n Total:\t"  );
2735                         for (i=0 ; i<maxX ; i++){
2736                                 tmpString = interfMainPanel::getInstance()->getCellValue(maxZ+2, i);//_grid->GetCellValue( maxZ+2 , i );
2737                                 fprintf(pFile,"%s\t" , (const char *)(tmpString.mb_str()) );
2738                         } // for i
2739                         fprintf(pFile,"\n"  );
2740                 }
2741
2742                 fclose(pFile);
2743         }
2744 }
2745
2746 //AD: 29-05-09
2747 void wxContourMainFrame::SaveValuesXYZ(std::string directory,std::string namefile,int typeContourGroup)
2748 {
2749         wxBusyCursor wait;
2750 //EED01Juillet2009      GenerateContourExtractData();
2751
2752         //int typeContourGroup = this->_radiolstboxContourGroup->GetSelection();
2753         _contourextractdata ->SetTypeOperation( typeContourGroup % 3 );
2754
2755         std::vector<manualBaseModel*> lstManConMod;
2756         std::vector<manualBaseModel*> lstManConModTmp;
2757         std::vector<manualBaseModel*> lstManConModExp;
2758         std::vector<double> pLstValue;
2759         std::vector<double> pLstValuePosX;
2760         std::vector<double> pLstValuePosY;
2761         std::vector<double> pLstValuePosZ;
2762
2763         std::vector<int> tempVector;
2764         _instantPanel->getInstant( tempVector );
2765
2766 //EED01Juillet2009      vtkImageData *imagedata = _theViewPanel->getSceneManager()->GetImageData();
2767         int sizeZ = _theViewPanel->getSceneManager()->GetImageDataSizeZ();
2768         int z;
2769         int ii,sizeLstContourThings;
2770
2771
2772         int minZ,maxZ;
2773         double totalZ;
2774         double porcent;
2775         wxString tmpString;
2776         minZ    = 0;// _mbarrange->GetStart();
2777         maxZ    = sizeZ;//_mbarrange->GetEnd();
2778         totalZ  = maxZ-minZ+1;
2779
2780 //EED01Juillet2009      _contourextractdata->SetImage( imagedata);
2781
2782 // For each slice..
2783         for ( z=0 ; z<sizeZ ; z++)
2784         {
2785
2786                 porcent = 100.0* (z-minZ)/totalZ;
2787
2788                 tmpString.Printf(_T("Saving Values"));
2789                 tmpString.Printf(_T("  %d %c            %d/%d             %d"), (int)porcent , 37 , z-minZ+1, (int)totalZ ,z);
2790                 interfMainPanel::getInstance()->setStringInfoPanel(tmpString);
2791                 //_staticTextInformation->SetLabel(tmpString);
2792
2793
2794                 //Extraction data from contours of each slice
2795                 _contourextractdata->SetZtoBeAnalys( z);
2796
2797                 tempVector[1]=z;
2798                 Instant instant(&tempVector);
2799                 std::vector<ContourThing**> lstContourThings = kernelManager->getOutlinesAtInstant(&instant);//this->_modelManager->getOutlinesAtInstant( &instant );
2800                 sizeLstContourThings = lstContourThings.size();
2801
2802                 lstManConMod.clear();
2803                 for (ii=0 ; ii<sizeLstContourThings ; ii++)
2804                 {
2805                         ContourThing **contourthing = lstContourThings[ii];
2806                         lstManConMod.push_back( (*contourthing)->getModel() );
2807                 }
2808                 lstManConModExp =  kernelManager->ExploseEachModel( lstManConMod );
2809
2810
2811 //EED004
2812
2813                 int iContourGroup,sizeContourGroup;
2814                 if (typeContourGroup==3) // contour separete
2815                 {
2816                         sizeContourGroup=lstManConModExp.size();
2817                 } else {  // contour AND OR XOR
2818                         sizeContourGroup=1;
2819                 }
2820
2821                 for( iContourGroup=0 ; iContourGroup<sizeContourGroup ; iContourGroup++ ){
2822                         lstManConModTmp.clear();
2823                         if (typeContourGroup==3) // contour separete
2824                         {
2825                                 lstManConModTmp.push_back( lstManConModExp[iContourGroup]);
2826                         } else {  // contour AND OR XOR
2827                                 lstManConModTmp = lstManConModExp;
2828                         }
2829
2830                         _contourextractdata->SetLstManualContourModel( lstManConModTmp );
2831
2832                         pLstValue.clear();
2833                         pLstValuePosX.clear();
2834                         pLstValuePosY.clear();
2835                         pLstValuePosZ.clear();
2836                         int numberOfPixels;
2837                         _contourextractdata->GetValuesInsideCrown(      &numberOfPixels,
2838                                                                                                                 &pLstValue,
2839                                                                                                                 &pLstValuePosX,
2840                                                                                                                 &pLstValuePosY,
2841                                                                                                                 &pLstValuePosZ);
2842
2843                         std::string temp = directory + "/" + namefile + "-slice";
2844                         temp = temp + kernelManager->intToString(z) + "-cont" + kernelManager->intToString(iContourGroup);
2845                         temp = temp + ".txt";
2846
2847                         // LG 14/01/09 : using crea
2848                         wxString filename = crea::std2wx(temp);
2849                         /*filename.Printf(_T("%s"),directory.c_str());
2850                         filename.append(_T("\\"));
2851                         filename.append(_T("%s"),namefile.c_str());
2852                         filename.append(_T("-slice"));
2853                         filename.append(_T("%d"),z);
2854                         filename.append(_T("-cont"));
2855                         filename.append(_T("%d"),iContourGroup);
2856                         filename.append(_T(".txt"));*/
2857                         //                      filename.Printf(temp.c_str());
2858
2859
2860
2861                         FILE *pFile=fopen((const char *)filename.mb_str(),"w+");
2862                         fprintf(pFile,"value \t x \t y \t z\n"  );
2863                         int iLstValue,sizeLstValue=pLstValue.size();
2864                         for (iLstValue=0 ; iLstValue<sizeLstValue ; iLstValue++ )
2865                         {
2866                                 fprintf(pFile,"%f\t %f\t %f\t %f\n", (float)pLstValue[iLstValue] , (float)pLstValuePosX[iLstValue], (float)pLstValuePosY[iLstValue], (float)z );
2867                         }
2868                         fclose(pFile);
2869                 } // for  iContourGroup
2870         } // for z
2871         interfMainPanel::getInstance()->setStringInfoPanel(_T(""));
2872         //_staticTextInformation->SetLabel( _T("") );
2873
2874 }
2875
2876 void wxContourMainFrame::getMaskValue(vtkImageData ** mask,vtkImageData ** value,int typeContourGroup, int selection, int minZ, int maxZ){
2877         wxBusyCursor wait;
2878 //EED01Juillet2009      GenerateContourExtractData();
2879
2880         //int typeContourGroup = this->_radiolstboxContourGroup->GetSelection();
2881         if (typeContourGroup==3)
2882         {
2883                 typeContourGroup=1;
2884         }
2885         _contourextractdata ->SetTypeOperation( typeContourGroup % 3 );
2886
2887         std::vector<manualBaseModel*> lstManConMod;
2888         std::vector<manualBaseModel*> lstManConModTmp;
2889         std::vector<manualBaseModel*> lstManConModExp;
2890
2891         std::vector<int> tempVector;
2892         _instantPanel->getInstant( tempVector );
2893
2894     vtkImageData *imagedata = _theViewPanel->getImageData();
2895         int ext[6];
2896         imagedata->GetExtent(ext);
2897         int sizeZimage = ext[5]-ext[4]+1;
2898         int z;
2899         int ii,sizeLstContourThings;
2900
2901
2902         double totalZ;
2903         double porcent;
2904
2905         wxString tmpString;
2906
2907
2908         if (selection==0 ) // actual slice
2909         {
2910                 int actualSlice = tempVector[1];
2911                 minZ    = actualSlice;
2912                 maxZ    = actualSlice;
2913         }
2914
2915         totalZ  = maxZ-minZ;
2916
2917 //EED01Juillet2009      _contourextractdata->SetImage( imagedata);
2918
2919         // cleanning image before range
2920         for (z=0; z<minZ; z++){
2921                 _contourextractdata->ResetImageResult(z);
2922         }
2923         // cleanning image after range
2924         for (z=maxZ+1; z<sizeZimage; z++){
2925                 _contourextractdata->ResetImageResult(z);
2926         }
2927
2928
2929 // For each slice..
2930         for ( z=minZ ; z<=maxZ ; z++)
2931         {
2932
2933                 porcent = 100.0* (z-minZ)/totalZ;
2934                 tmpString.Printf(_T("Saving Values"));
2935                 tmpString.Printf(_T("%d %c            %d/%d             %d"), (int)porcent , 37 , z-minZ+1, (int)totalZ ,z);
2936                 interfMainPanel::getInstance()->setStringInfoPanel(tmpString);
2937
2938                 //Extraction data from contours of each slice
2939                 _contourextractdata->SetZtoBeAnalys( z);
2940
2941                 tempVector[1]=z;
2942                 Instant instant(&tempVector);
2943                 std::vector<ContourThing**> lstContourThings = kernelManager->getOutlinesAtInstant( &instant );
2944                 sizeLstContourThings = lstContourThings.size();
2945
2946                 lstManConMod.clear();
2947                 for (ii=0 ; ii<sizeLstContourThings ; ii++)
2948                 {
2949                         ContourThing **contourthing = lstContourThings[ii];
2950                         lstManConMod.push_back( (*contourthing)->getModel() );
2951                 }
2952                 lstManConModExp =  kernelManager->ExploseEachModel( lstManConMod );
2953
2954
2955                 int iContourGroup,sizeContourGroup;
2956                 if (typeContourGroup==3) // contour separete
2957                 {
2958                         sizeContourGroup=lstManConModExp.size();
2959                 } else {  // contour AND OR XOR
2960                         sizeContourGroup=1;
2961                 }
2962
2963                 for( iContourGroup=0 ; iContourGroup<sizeContourGroup ; iContourGroup++ ){
2964                         lstManConModTmp.clear();
2965                         if (typeContourGroup==3) // contour separete
2966                         {
2967                                 lstManConModTmp.push_back( lstManConModExp[iContourGroup]);
2968                         } else {  // contour AND OR XOR
2969                                 lstManConModTmp = lstManConModExp;
2970                         }
2971
2972                         _contourextractdata->SetLstManualContourModel( lstManConModTmp );
2973                         _contourextractdata->CalculateImageResult(); // with actual Z
2974
2975                 } // for  iContourGroup
2976         } // for z
2977
2978         (*value) = _contourextractdata->GetVtkImageValueResult();
2979         (*mask)  = _contourextractdata->GetVtkImageMaskResult();
2980
2981 }
2982
2983 void wxContourMainFrame::SaveImageResult(std::string directory,std::string namefile, vtkImageData* mask,vtkImageData* value)
2984 {
2985
2986         double spc[3];
2987         kernelManager->GetSpacing(spc,0);   // returns the spacing of the first image
2988         
2989         std::string temp = directory + "/" + namefile + "-image-Value.mhd";
2990
2991         wxString filename = crea::std2wx(temp);
2992
2993 // Image Value
2994         
2995         vtkImageChangeInformation *valueChInfo = vtkImageChangeInformation::New();
2996         valueChInfo->SetInput(value);
2997         valueChInfo->SetSpacingScale(spc);      
2998         vtkMetaImageWriter *writerValueImage = vtkMetaImageWriter::New( );
2999         writerValueImage->SetInput( valueChInfo->GetOutput() );
3000         writerValueImage->SetFileName( (const char *)filename.mb_str() );
3001         writerValueImage->SetFileDimensionality( 3 );
3002         writerValueImage->SetCompression(false);
3003         writerValueImage->Write( );
3004
3005 // Image Mask
3006         temp = directory + "/" + namefile + "-image-Mask.mhd";
3007
3008         // LG 14/01/09 : using crea
3009         filename = crea::std2wx(temp);
3010         //      filename.Printf(_T(temp.c_str()));
3011
3012
3013         vtkImageChangeInformation *maskChInfo = vtkImageChangeInformation::New();
3014         maskChInfo->SetInput(mask);
3015         maskChInfo->SetSpacingScale(spc);       
3016         vtkMetaImageWriter *writerMaskImage = vtkMetaImageWriter::New( );
3017         writerMaskImage->SetInput( maskChInfo->GetOutput() );
3018         writerMaskImage->SetFileName( (const char *)filename.mb_str() );
3019         writerMaskImage->SetFileDimensionality( 3 );
3020         writerMaskImage->SetCompression(false);
3021         writerMaskImage->Write( );
3022
3023         interfMainPanel::getInstance()->setStringInfoPanel( _T("") );
3024
3025 }
3026
3027
3028
3029 void wxContourMainFrame::onChangeInstantInstantPanel(std::string name,int value, int minshow, int maxshow){
3030         if( name.compare( _theViewPanel->getVerticalConceptName() ) == 0){
3031                 _theViewPanel->setActualVertical( value);
3032         }
3033         else if( name.compare( _theViewPanel->getHorizontalConceptName() ) == 0|| _instantPanel->getIfConceptCheckedAt( name, 0 ) )     {
3034                 _theViewPanel->setHorizontalConcept( name, minshow, maxshow, minshow, maxshow, value);
3035         }
3036
3037         changeInstant();
3038 }
3039
3040 void wxContourMainFrame::onSnakePressed(){
3041         std::vector<double> vecX;
3042         std::vector<double> vecY;
3043         std::vector<double> vecZ;
3044         _theViewPanel->GetPointsOfActualContour( &vecX , &vecY , &vecZ );
3045
3046         if (vecX.size()!=0){
3047                 std::vector<int> tempVector;
3048                 _instantPanel->getInstant( tempVector );
3049                 int i,size=vecZ.size();
3050                 int actualSlice = tempVector[1];
3051                 for ( i=0 ; i<size ; i++ )
3052                 {
3053                         vecZ[i] = actualSlice;
3054                 } // for
3055
3056                 wxDialog* dialog = new wxDialog(this, -1, wxString(_T("Snake")));
3057                 wxPanel* panel = new wxPanel(dialog,-1);
3058                 //              wxStaticText* sttext = new wxStaticText(panel, -1, wxString(_T("Panel para snake")));
3059          new wxStaticText(panel, -1, wxString(_T("Panel para snake")));
3060                 dialog->ShowModal();
3061         } // if
3062
3063 }
3064
3065 void wxContourMainFrame::saveFileWithContoursAutomatique(){
3066         std::string filename = kernelManager->getCurrentFileName();
3067         if(filename.compare("")!=0){
3068                 saveFileWithContours(filename);
3069         }else{
3070                 onSave();
3071         }
3072 }
3073 void wxContourMainFrame::ShowToolsPanel(bool show){
3074         _pannew->Show(show);
3075 }
3076
3077
3078
3079 void wxContourMainFrame::SetContourGroup(int contourGroup)
3080 {
3081         _contourGroup = contourGroup;
3082 }
3083
3084
3085 wxPanel *wxContourMainFrame::getMaskImageViewPanel(wxWindow *parent)
3086 {
3087
3088         if      (_viewMaskImagePanel==NULL)
3089         {
3090                 _contourextractdata = new ContourExtractData(true);
3091                 _contourextractdata->SetImage( _theViewPanel->getImageData() );
3092 //              double range[2];
3093 //              _theViewPanel->getImageData()->GetScalarRange(range);
3094                 //int min = (int)floor (range[0]);
3095                 //int max = (int)ceil (range[1]);
3096                 int min = 254;
3097                 int max = 256;
3098                 _viewMaskImagePanel = new ThresholdImageViewPanel( parent, -1, -1 , 0);
3099                 _viewMaskImage = new ThresholdImageView();
3100                 _viewMaskImage->SetImage(_contourextractdata->GetVtkImageMaskResult() );
3101                 _viewMaskImage->SetminMaxValue( min, max);
3102                 _viewMaskImage->SetBaseColor( 0,0,1 );
3103                 _viewMaskImagePanel->SetThresholdImageView( _viewMaskImage );
3104                 _viewMaskImage->SetwxVtkBaseView( _theViewPanel->getWxVtkBaseView() );
3105         }
3106         return _viewMaskImagePanel;
3107 }
3108
3109
3110 wxPanel *wxContourMainFrame::getColorLayerImageViewPanel(wxWindow *parent)
3111 {
3112         if      (_viewColorLayerImagePanel==NULL)
3113         {
3114                 double range[2];
3115                 _theViewPanel->getImageData()->GetScalarRange(range);
3116                 int min = (int)floor (range[0]);
3117                 int max = (int)ceil (range[1]);
3118                 _viewColorLayerImagePanel = new ColorLayerImageViewPanel( parent, min, max , 1);
3119                 _viewColorLayerImage = new ColorLayerImageView();
3120 //              _viewColorLayerImage->SetImage( _theViewPanel->getImageData() );
3121                 _viewColorLayerImage->SetImage( NULL );
3122                 _viewColorLayerImagePanel->SetColorLayerImageView( _viewColorLayerImage );
3123                 _viewColorLayerImage->SetwxVtkBaseView( _theViewPanel->getWxVtkBaseView() );
3124         }
3125         return _viewColorLayerImagePanel;
3126 }
3127
3128
3129 wxPanel *wxContourMainFrame::getThresholdImageViewPanel(wxWindow *parent)
3130 {
3131         if      (_viewThresholdImagePanel==NULL)
3132         {
3133                 double range[2];
3134                 _theViewPanel->getImageData()->GetScalarRange(range);
3135                 int min = (int)floor (range[0]);
3136                 int max = (int)ceil (range[1]);
3137                 _viewThresholdImagePanel = new ThresholdImageViewPanel( parent, min, max , 1);
3138                 _viewThresholdImage = new ThresholdImageView();
3139                 _viewThresholdImage->SetImage( _theViewPanel->getImageData() );
3140                 _viewThresholdImage->SetminMaxValue( min, max);
3141                 _viewThresholdImage->SetBaseColor( 1,0,0 );
3142                 _viewThresholdImagePanel->SetThresholdImageView( _viewThresholdImage );
3143                 _viewThresholdImage->SetwxVtkBaseView( _theViewPanel->getWxVtkBaseView() );
3144         }
3145         return _viewThresholdImagePanel;
3146 }
3147
3148 //CMRU 17-08-09-----------------------------------------------------------------------------------------------
3149 int wxContourMainFrame::getType ()
3150 {
3151         int tipo = 0;
3152         std::vector<std::string> currentSelection = _theViewPanel->getSelectedObjects();
3153
3154         if(!currentSelection.empty())
3155         {
3156                 std::string cloneName = currentSelection [0];
3157                 manualBaseModel * manualModel = kernelManager->getOutlineByKeyName(cloneName);
3158                 tipo = manualModel-> GetTypeModel();
3159         }
3160         return tipo;
3161 }
3162
3163 double wxContourMainFrame::getContourSizeInPixels()
3164 {
3165         double contourSize = 0;
3166
3167         std::vector<std::string> currentSelection = _theViewPanel->getSelectedObjects();        if(!currentSelection.empty())
3168         if(!currentSelection.empty())
3169         {
3170                 std::string cloneName = currentSelection [0];
3171
3172                 manualBaseModel * manualModel = kernelManager->getOutlineByKeyName(cloneName);//_modelManager->getOutlineByKeyName( cloneName )->getModel();
3173                 contourSize = manualModel-> GetPathSize();
3174         }
3175         return contourSize;
3176 }
3177 manualBaseModel * wxContourMainFrame::getContour ()
3178 {
3179         std::vector<std::string> currentSelection = _theViewPanel->getSelectedObjects();
3180
3181         if(!currentSelection.empty())
3182         {
3183                 std::string cloneName = currentSelection [0];
3184                 manualBaseModel * manualModel = kernelManager->getOutlineByKeyName(cloneName);//_modelManager->getOutlineByKeyName( cloneName )->getModel();
3185                 return manualModel;
3186         }
3187         return NULL;
3188 }
3189 void wxContourMainFrame::onPrintLabel (wxString label, manualBaseModel* manualModel)
3190 {
3191         std::string labelAscii(label.ToAscii());
3192         int pos = labelAscii.find(" ");
3193
3194         int j;
3195
3196         for (j=0 ; pos != string::npos;j++)
3197         {
3198                 labelAscii.replace( pos, 1, "_" );
3199                 pos= labelAscii.find(" ");
3200         }
3201
3202         manualModel -> SetLabel(labelAscii);
3203 }
3204 void wxContourMainFrame::onInsertCalculation(manualBaseModel* manualModel)
3205 {
3206         double sizeInPixel = manualModel ->GetPathSize();
3207         double onePixelRealSize = interfMainPanel::getInstance()->GetPixelValue();;
3208         double realContourSize = sizeInPixel*onePixelRealSize;
3209         manualModel ->SetRealSize(realContourSize);
3210 }
3211
3212 double wxContourMainFrame::onePixelSize( double value)
3213 {
3214         return _onePixelSize = value;
3215 }
3216
3217 std::string wxContourMainFrame::GetFileLocation()
3218 {
3219         return _fileLocation;
3220 }
3221
3222 void wxContourMainFrame::SetFileLocation(std::string newFileLocation)
3223 {
3224         _fileLocation = newFileLocation;
3225         std::cout<<"GETFILELOCATION:"<<_fileLocation<<std::endl;
3226 }
3227 //------------------------------------------------------------------------------------------------------------