]> Creatis software - creaImageIO.git/blob - bbtk/src/bbcreaImageIOImagesChooserDialogBox.xml
9c074739974905f80c56bc69b31866d7d930d969
[creaImageIO.git] / bbtk / src / bbcreaImageIOImagesChooserDialogBox.xml
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 <?xml version="1.0" encoding="iso-8859-1"?>
29 <!--==========================================================================
30    STARTS THE DESCRIPTION OF THE BLACK BOX -->
31 <blackbox name="ImagesChooserDialogBox">
32   <!--========================================================================
33     THE BOX DOCUMENTATION -->
34   <author>cervenansky.frederic@creatis.insa-lyon.fr</author>
35   <description>
36     ImagesChooserDialogBox is a simple application to select file(s) or directory or data from Gimmick database and display them. It handles DICOM, jpg, tif, png, bmp and mhd.
37   </description>
38   <category>image;reader;dicom;</category>
39
40   <!--========================================================================
41     #include directives to be put in the .h generated
42     There must be one tag per file to include -->
43   <include>creaImageIOWxSimpleDlg.h</include>
44   <!--========================================================================
45     INPUTS/OUTPUTS DECLARATION -->
46
47   <input name="Title" type="std::string" description="Title of the dialog"/>
48   <typedef>
49     <PRE>
50       typedef std::vector<vtkImageData*> OutputImagesType;</PRE>
51   </typedef>
52
53   <output name="Out" type="vtkImageData*" description="The selected image"/>
54   <output name="OutImages" type="OutputImagesType" description="Vector of selected images"/>
55   
56   <!--========================================================================
57     PROCESS section -->
58
59   <process>
60     <PRE>
61         creaImageIO::WxSimpleDlg dlg(0,crea::std2wx(bbGetInputTitle()),"localdatabase_Descriptor.dscp","Local Database"); 
62                 dlg.ShowModal(); 
63                 if (dlg.getImagesSelected().size()!=0){ 
64                   if(dlg.getImagesSelected().size() ==1)
65                   {
66                         bbSetOutputOut( dlg.getImagesSelected()[0] );  
67                   } else {
68 printf("EED  creaImageIOWxSimpleDlg 1 \n");
69                           // FCY: it will be a big problem if we have several kind of data in the same folder.
70                           // creation of a huge vtkImageData!!!!
71                           vtkImageData* first = dlg.getImagesSelected()[0];
72                           int dim[3];
73                           first->GetDimensions(dim);
74                           if (dim[2]==1){
75                                  vtkImageData *out;
76                                 out  = vtkImageData::New();
77                                 out->SetScalarType(first->GetScalarType());
78                                 out->SetNumberOfScalarComponents(first->GetNumberOfScalarComponents());
79                                 int ext[6];
80                                 first->GetWholeExtent(ext); 
81                                 if(ext[5] == 0)
82                                 {
83                                    ext[5] = dlg.getImagesSelected().size()-1;
84                                  } else {
85                                         ext[5] = ext[5] * dlg.getImagesSelected().size()-1; // to deal with multiframes 
86                                 } // ext
87                                 out->SetExtent(ext);
88                                 double spac[3];
89                                 first->GetDimensions(dim);
90                                 first->GetSpacing(spac);
91                                 if (spac[0]==spac[1])
92                                 {
93                                         spac[2]=spac[0];  
94                                 }
95                                 out->SetSpacing(spac);
96                                 out->SetDimensions(dim[0], dim[1], dlg.getImagesSelected().size() );
97                                 out->AllocateScalars();
98                                 out->Update();
99                                 unsigned long imsize = dim[0] * dim[1];
100                                 imsize = imsize * dim[2];  // deal with multiframes here
101                                 // differents formats char , short, etc...
102                                 // differents components 1..3  ex. jpg ->RGB 3
103                                 imsize = imsize * first->GetScalarSize() * first->GetNumberOfScalarComponents();
104 printf("EED  creaImageIOWxSimpleDlg 2 \n");
105                                 int slice,sizeImageVector=dlg.getImagesSelected().size();
106                                 for (slice=0 ; slice<sizeImageVector ; slice++)
107                                 {
108 printf("EED  creaImageIOWxSimpleDlg 3 slice %d     sizeImageVector %d\n",slice,sizeImageVector);
109                                         vtkImageData *img = dlg.getImagesSelected()[slice];
110                                         memcpy(out->GetScalarPointer(0,0,slice), img->GetScalarPointer(0,0,0), imsize);
111                                 //img->Delete();
112                                  } // for slice 
113
114 //EED This is NOT working. The iteration over the pointer vtkImageData
115 //                      int slice=0;
116 //                      std::vector<vtkImageData*>::iterator it;
117 //                      for (it=dlg.getImagesSelected().begin(); it!=dlg.getImagesSelected().end(); ++it) 
118 //                      {
119 //                                memcpy(out->GetScalarPointer(0,0,slice), (*it)->GetScalarPointer(0,0,0), imsize);
120 //                                slice++;
121 //                      }       
122 //                     //for (it=dlg.getImagesSelected().begin(); it!=dlg.getImagesSelected().end(); ++it) 
123 //                      //  {
124 //                      //      (*it)->Delete();
125 //                      //  }
126
127 printf("EED  creaImageIOWxSimpleDlg 4 \n");
128                                 bbSetOutputOut(out);
129                         } else {
130                          bbSetOutputOut(first);
131                         } // dim
132                   }
133                 } else { 
134                 bbSetOutputOut( NULL );  
135         } // dlg.getImagesSelected().size()!=0
136         bbSetOutputOutImages( dlg.getImagesSelected());  
137 printf("EED  creaImageIOWxSimpleDlg 5 \n");
138     </PRE>
139   </process>
140
141   <!--======================================================================
142    CONSTRUCTORS / DESTRUCTORS (OPTIONAL) -->
143
144    
145   <defaultValues>
146   <PRE>
147
148   </PRE>
149   </defaultValues>
150
151    
152
153 </blackbox>
154