]> Creatis software - creaContours.git/blob - appli/wxContourGUIExample/wxContourGUIExample.cxx
38a8b9fe33e197a08759e3e99d8a2902aea0c5bc
[creaContours.git] / appli / wxContourGUIExample / wxContourGUIExample.cxx
1 /*# ---------------------------------------------------------------------
2 #
3 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
4 #                        pour la Sant�)
5 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
6 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
7 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
8 #
9 #  This software is governed by the CeCILL-B license under French law and
10 #  abiding by the rules of distribution of free software. You can  use,
11 #  modify and/ or redistribute the software under the terms of the CeCILL-B
12 #  license as circulated by CEA, CNRS and INRIA at the following URL
13 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
14 #  or in the file LICENSE.txt.
15 #
16 #  As a counterpart to the access to the source code and  rights to copy,
17 #  modify and redistribute granted by the license, users are provided only
18 #  with a limited warranty  and the software's author,  the holder of the
19 #  economic rights,  and the successive licensors  have only  limited
20 #  liability.
21 #
22 #  The fact that you are presently reading this means that you have had
23 #  knowledge of the CeCILL-B license and that you accept its terms.
24 # ------------------------------------------------------------------------ */
25
26 //----------------------------------------------------------------------------------------------------------------
27 // Class definition include
28 //----------------------------------------------------------------------------------------------------------------
29
30 #include "wxContourGUIExample.h"
31 #include "wxContourMainFrame.h"
32 //#include "OutlineModelManager.h"
33 //#include "wxContourEventHandler.h"
34
35 //#include <creaImageIOWxGimmickDialog.h>
36 //#include <creaImageIOWxGimmickReaderDialog.h>
37 #include <creaImageIOWxSimpleDlg.h>
38
39 #include <creaImageIOSystem.h>
40
41 #include <creaVtkBasicSlicer.h>
42 //#include "wxContourMainPanel.h"
43
44 #include "vtkMetaImageReader.h"
45 #include <map>
46 #include "vtkImageData.h"
47
48 #include "wx/artprov.h"
49 #include <wx/filedlg.h>
50
51
52 /* EED EraseMe
53 //#include "OutlineModelBuilder.h"
54 //#include "ContourThing.h"
55 //#include "AxeThing.h"
56 //#include "ImageSourceThing.h"
57 //#include "ImageSectionThing.h"
58 //#include "SomeEnvironment.h"
59 //#include "ReaderEnvironment.h"
60
61 //#include "interfMainPanel.h"
62
63 #if defined(MACOSX) // assume this is OSX
64 # include <sys/param.h>
65 # include <mach-o/dyld.h> // _NSGetExecutablePath : must add -framework CoreFoundation to link line
66 # include <string.h>
67 # ifndef PATH_MAX
68 #  define PATH_MAX MAXPATHLEN
69 # endif
70 #endif // MACOSX
71 */
72
73 #ifndef PATH_MAX // If not defined yet : do it
74 #  define PATH_MAX 2048
75 #endif
76
77 #if defined(WIN32)
78   #include <direct.h>
79 #else
80    #include <dirent.h>
81 #endif
82
83 #include <stdlib.h>
84
85 wxContourMainFrame* wxTheApplication::frame = 0;
86
87 //----------------------------------------------------------------------------------------------------------------
88 // This macro implements the entry point (main function) for the application
89 //----------------------------------------------------------------------------------------------------------------
90
91
92
93
94
95
96 //=========================================================================
97 //=========================================================================
98 IMPLEMENT_APP( wxTheApplication );
99 /*
100 wxContourGUIExample :: wxContourGUIExample(const wxString& title, const wxPoint& pos, const wxSize& size)
101 : wxFrame((wxFrame *) NULL, -1, title, pos, size)
102 {
103 }
104 */
105
106 #ifdef _DEBUG
107 void wxAppConsole::OnAssert(char const *,int,char const *,char const *)
108 {
109 }
110
111 void wxAppConsole::OnAssertFailure(char const *,int,char const *,char const *,char const *)
112 {
113 }
114 #endif
115
116 bool wxTheApplication :: OnInit()
117 {
118         wxString infoImage;
119         wxInitAllImageHandlers();
120
121 //EED01Juin2010 int min_image_type = GIMMICK_2D_IMAGE_SELECTION;
122 //EED01Juin2010 int max_image_type = GIMMICK_3D_IMAGE_SELECTION;
123 //EED01Juin2010 int output_dim = NATIVE;
124 //EED01Juin2010 int threads = 1;
125
126
127 //EED 1Juin2010
128       creaImageIO::WxSimpleDlg w(0,_T("Select your image"),"creaContours_Descriptor.dscp","creatisContours DB");
129       w.ShowModal();
130
131         std::vector<vtkImageData*> images;
132 //EED 1Juin2010
133 //      creaImageIO::WxGimmickReaderDialog w(0,
134 //                                                                              -1,
135 //                                                                              "creaContours_Descriptor.dscp",
136 //                                                                              "creatisContours DB",
137 //                                                                              _T("WxGimmickDialog test"),
138 //                                                                              wxDefaultPosition,wxSize(1200,800)
139 //                                                                              ,min_image_type,
140 //                                                                              max_image_type,
141 //                                                                              output_dim,
142 //                                                                              threads);
143 //      w.ShowModal();
144
145
146 //JCP
147         //std::string datadir(  crea::wx2std(GetExecutablePath()) );
148         std::string datadir(  crea::System::GetExecutablePath() );
149 //JCP
150
151             #ifdef LINUX /* assume this is OSX */
152                    datadir=datadir+"/../share/creaContours";
153             #endif // MACOSX
154
155                 #ifdef MACOSX /* assume this is OSX */
156                         datadir=datadir+"/../../../../share/creaContours";
157                 #endif // MACOSX
158
159
160                 if(w.GetReturnCode() == wxID_OK)
161                 {
162                                 std::vector<std::string> s;
163 //EED 01Juin2010                                w.GetSelectedFiles(s);
164
165
166 //EED                   std::vector<std::string>::iterator i;
167 //                              for (i=s.begin();i!=s.end();++i)
168 //                              {
169 //                                      std::cout << *i << std::endl;
170 //                              }
171 //                              std::cout << "$$$$ "<<std::endl;
172                                 //w.GetSelectedImages(images);
173
174 //EED31mai2010                          w.GetSelectedImages(images,output_dim);
175
176
177 //EED 1Juin2010
178 //                              std::vector<creaImageIO::OutStrGimmick> out;
179 //                              std::vector<std::string> attr;
180 ////                            attr.push_back("D0028_0010");
181 ////                            attr.push_back("D0008_0023");
182 ////                            attr.push_back("D0008_1070");
183 //                              w.getSelected(out, attr,true,"");
184 ////                            std::cout<<out.size()<<std::endl;
185 ////                            crea::VtkBasicSlicer(out.front().img);
186 //                              int size=out.size();
187 //                              int ii;
188 //                              for (ii=0;ii<size;ii++)
189 //                              {
190 //                                      images.push_back(out[ii].img);
191 //                              }
192
193 //EED 1Juin2010
194 //                              printf("EED creaContours wxTheApplication :: OnInit  %d\n", w.getImagesSelected().size() );
195                                 images    = w.getImagesSelected();
196                                 infoImage = w.getInfoImage();
197 //                              printf("EED creaContours wxTheApplication :: OnInit  %d\n", images.size() );
198
199                 }
200                 else if (w.GetReturnCode() == wxID_CANCEL)
201                 {
202                                 vtkMetaImageReader *reader = vtkMetaImageReader::New();
203                                 std::string filename= datadir + "/data/hola.mhd";
204                                 infoImage=_T("DEFAULT-Image:")+crea::std2wx(filename);
205                                 reader->SetFileName( filename.c_str() );
206                                 reader->Update();
207                                 images.push_back(reader->GetOutput());
208                         }
209                         else
210                         {
211                                 return -1;
212                         }
213
214
215         wxFrame* frame1 = new wxFrame(NULL, wxID_ANY, wxT("Creatis- ROI Application- Evaluation version,01 Agost 2010 ")+infoImage, wxPoint(400,50), wxSize(800, 600) );
216
217         //frame = new wxContourMainFrame( frame1, wxID_ANY, wxString(_T("")), wxPoint(50,50), wxSize(800, 600), images );
218         frame = wxContourMainFrame::getInstance(frame1, wxID_ANY, wxString(_T("")), wxPoint(200,50), wxSize(800, 600), images,  wxDEFAULT_FRAME_STYLE | wxSUNKEN_BORDER,datadir );
219         frame1->CreateStatusBar();
220         frame1->Show(TRUE);
221     frame->RefreshInterface();
222         return TRUE;
223 }
224
225 #if(WIN32)
226 int main(int argc, char* argv[])
227   {
228     return WinMain(::GetModuleHandle(NULL), NULL,
229                    ::GetCommandLine(), SW_SHOWNORMAL);
230   }
231 #else
232 #endif
233