]> Creatis software - creaImageIO.git/blob - src/creaImageIOExternalGimmick.cpp
#2842 creaImageIO Bug New Normal - Read images from directory
[creaImageIO.git] / src / creaImageIOExternalGimmick.cpp
1 /*
2 # ---------------------------------------------------------------------
3 #
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image 
5 #                        pour la Santé)
6 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
9 #
10 #  This software is governed by the CeCILL-B license under French law and 
11 #  abiding by the rules of distribution of free software. You can  use, 
12 #  modify and/ or redistribute the software under the terms of the CeCILL-B 
13 #  license as circulated by CEA, CNRS and INRIA at the following URL 
14 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
15 #  or in the file LICENSE.txt.
16 #
17 #  As a counterpart to the access to the source code and  rights to copy,
18 #  modify and redistribute granted by the license, users are provided only
19 #  with a limited warranty  and the software's author,  the holder of the
20 #  economic rights,  and the successive licensors  have only  limited
21 #  liability. 
22 #
23 #  The fact that you are presently reading this means that you have had
24 #  knowledge of the CeCILL-B license and that you accept its terms.
25 # ------------------------------------------------------------------------
26 */
27
28
29 #include <creaImageIOExternalGimmick.h>
30 #include <creaImageIOWxSimpleDlg.h>
31
32 //EED Borrame
33 //#include <creaImageIOExternalGimmick.h>
34
35
36 vtkImageData* getImageDataDialog()
37 {
38     wxString infoImage;
39     std::vector<vtkImageData*> images;
40     creaImageIO::WxSimpleDlg w(0,_T("Select your image"),"creaContours_Descriptor.dscp","creatisContours DB");
41     w.ShowModal();
42
43     vtkImageData *result=NULL;
44
45     if(w.GetReturnCode() == wxID_OK)
46     {
47 //        images          = w.getImagesSelected();
48 //        infoImage = w.getInfoImage();
49         result=w.getVolumeSelected();
50
51     } // if
52
53 // EED 2016/02/16 
54 //    if (images.size()>0)
55 //    {
56 //       result=images[0];
57 //    }
58
59     return result;
60 }
61
62
63
64 std::vector<creaImageIO::OutStrGimmick> getImagesInfoDialog()
65 {
66     wxString infoImage;
67     std::vector<creaImageIO::OutStrGimmick> s;
68     creaImageIO::WxSimpleDlg w(0,_T("Select your image"),"creaContours_Descriptor.dscp","creatisContours DB");
69         w.setInfo(true);
70     w.ShowModal();
71     if(w.GetReturnCode() == wxID_OK)
72     {
73            s      = w.getMapInfos();
74     } 
75
76     return s;
77 }
78
79
80 /*EED Borrame
81 vtkImageData* getImageDataDialog() {
82         //      wxApp::OnInit();
83         #ifdef __WXGTK__
84           //See http://www.wxwindows.org/faqgtk.htm#locale
85           setlocale(LC_NUMERIC, "C");
86         #endif
87            wxInitAllImageHandlers();
88
89            creaImageIO::SetGimmickMessageLevel(5);
90            creaImageIO::SetGimmickDebugMessageLevel(0);
91
92            int min_dim = GIMMICK_2D_IMAGE_SELECTION;
93            int max_dim = GIMMICK_3D_IMAGE_SELECTION;
94            int output_dim = NATIVE;
95            int threads = 1;
96
97            creaImageIO::WxGimmickReaderDialog w(
98                                                 0,
99                                            -1,
100                                            "localdatabase_Descriptor.dscp",
101                                            "Local Database",
102                                            _T("Select image(s)        - Gimmick! (c) CREATIS-LRMN 2008"),
103                                            wxDefaultPosition,
104                                            wxSize(1200,800),
105                                            min_dim,
106                                            max_dim,
107                                            output_dim,
108                                            threads);
109            w.ShowModal();
110
111            if (w.GetReturnCode() == wxID_OK)
112                  {
113                    std::cout << "$$$$ main : user clicked 'OK' $$$$"<<std::endl;
114                    std::cout << "$$$$ selected files : "<<std::endl;
115                    //Puts filenames
116                    std::vector<std::string> s;
117                    w.GetSelectedFiles(s);
118                    std::vector<std::string>::iterator i;
119                    for (i=s.begin();i!=s.end();++i)
120                          {
121                            std::cout << *i << std::endl;
122                          }
123                    std::cout << "$$$$ "<<std::endl;
124
125                    //Puts images
126                    std::vector<vtkImageData*> images;
127                    w.GetSelectedImages(images,output_dim);
128                    std::cout<<images.size()<<std::endl;
129
130                    w.OnExit();
131                    return images[0];
132
133                    //crea::VtkBasicSlicer(images.front());
134                    //images.front()->Delete();
135
136
137                  }
138            else if (w.GetReturnCode() == wxID_CANCEL)
139                  {
140                    w.OnExit();
141                    std::cout << "$$$$ main : user clicked 'CANCEL' $$$$"<<std::endl;
142                  }
143            else
144                  {
145                    w.OnExit();
146                    std::cout << "$$$$ main : dialog ended without return code ! $$$$"
147                                          <<std::endl;
148                  }
149
150            //   std::cout << "$$$$ main : deleting dialog"<<std::endl;
151            //   delete w;
152            std::cout << "$$$$$$$$$$$$$$$$$$$$ main ended "<<std::endl;
153            return NULL;
154         }
155
156
157 */