]> Creatis software - creaImageIO.git/blob - bbtk/src/bbcreaImageIOReadImages.cxx
#3320 ReadImages box
[creaImageIO.git] / bbtk / src / bbcreaImageIOReadImages.cxx
1 //===== 
2 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
3 //===== 
4 #include "bbcreaImageIOReadImages.h"
5 #include "bbcreaImageIOPackage.h"
6
7 #include "creaImageIOSimpleView.h"
8
9 namespace bbcreaImageIO
10 {
11
12 BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaImageIO,ReadImages)
13 BBTK_BLACK_BOX_IMPLEMENTATION(ReadImages,bbtk::AtomicBlackBox);
14 //===== 
15 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
16 //===== 
17 void ReadImages::Process()
18 {
19
20 // THE MAIN PROCESSING METHOD BODY
21 //   Here we simply set the input 'In' value to the output 'Out'
22 //   And print out the output value
23 // INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
24 //    void bbSet{Input|Output}NAME(const TYPE&)
25 //    const TYPE& bbGet{Input|Output}NAME() const 
26 //    Where :
27 //    * NAME is the name of the input/output
28 //      (the one provided in the attribute 'name' of the tag 'input')
29 //    * TYPE is the C++ type of the input/output
30 //      (the one provided in the attribute 'type' of the tag 'input')
31 //    bbSetOutputOut( bbGetInputIn() );
32 //    std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
33   
34         std::vector<vtkImageData*>                                                      mResults;
35         VectorMapInfoDicom                                                                      mResultsDicomAtr;
36         creaImageIO::SimpleView                                                         mView;
37   
38         if (bbGetInputActive()==true)
39         {
40                 if( mView.readFile(bbGetInputLstNameImages() , bbGetInputDicomTags() , mResultsDicomAtr , mResults)==true )
41                 {
42                         bbSetOutputOut( mView.getVolumeSelected( mResults ) );
43                         bbSetOutputOutImages( mResults  );
44                         bbSetOutputDicomInfo( mResultsDicomAtr  );
45                 } else {
46                         bbSetOutputOut( NULL );
47                         printf("EED Warning! ReadImages::Process   Files(s) not found. \n");
48                 }// if readFile
49         } else {
50                         bbSetOutputOutImages( mResults  );
51                         bbSetOutputDicomInfo( mResultsDicomAtr  );
52                         bbSetOutputOut( NULL );         
53         }//Active       
54 }
55 //===== 
56 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
57 //===== 
58 void ReadImages::bbUserSetDefaultValues()
59 {
60
61 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
62 //    Here we initialize the input 'In' to 0
63    bbSetInputActive(true);
64   
65 }
66 //===== 
67 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
68 //===== 
69 void ReadImages::bbUserInitializeProcessing()
70 {
71
72 //  THE INITIALIZATION METHOD BODY :
73 //    Here does nothing 
74 //    but this is where you should allocate the internal/output pointers 
75 //    if any 
76
77   
78 }
79 //===== 
80 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
81 //===== 
82 void ReadImages::bbUserFinalizeProcessing()
83 {
84
85 //  THE FINALIZATION METHOD BODY :
86 //    Here does nothing 
87 //    but this is where you should desallocate the internal/output pointers 
88 //    if any
89   
90 }
91 }
92 // EO namespace bbcreaImageIO
93
94