]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkMetaImageReader.cxx
#3039 BBTK Bug New Normal - vtk package MetaImageReader exeption file not exists
[bbtk.git] / packages / vtk / src / bbvtkMetaImageReader.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 "bbvtkMetaImageReader.h"
5 #include "bbvtkPackage.h"
6
7 #include "vtkMetaImageReader.h"
8
9 namespace bbvtk
10 {
11
12 BBTK_ADD_BLACK_BOX_TO_PACKAGE(vtk,MetaImageReader)
13 BBTK_BLACK_BOX_IMPLEMENTATION(MetaImageReader,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 MetaImageReader::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
32 //    bbSetOutputOut( bbGetInputIn() );
33 //    std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
34
35         FILE *ff=fopen(bbGetInputIn().c_str(),"r");
36         if (ff)
37         {
38                 fclose(ff);
39                 vtkMetaImageReader *reader = vtkMetaImageReader::New();
40                 reader->SetFileName(bbGetInputIn().c_str());
41                 reader->Update();
42                 bbSetOutputOut(reader->GetOutput());
43         } else {
44                         bbSetOutputOut(NULL);
45         }
46 }
47 //===== 
48 // 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)
49 //===== 
50 void MetaImageReader::bbUserSetDefaultValues()
51 {
52
53 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
54 //    Here we initialize the input 'In' to 0
55    bbSetInputIn("");
56   
57 }
58 //===== 
59 // 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)
60 //===== 
61 void MetaImageReader::bbUserInitializeProcessing()
62 {
63
64 //  THE INITIALIZATION METHOD BODY :
65 //    Here does nothing 
66 //    but this is where you should allocate the internal/output pointers 
67 //    if any 
68
69   
70 }
71 //===== 
72 // 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)
73 //===== 
74 void MetaImageReader::bbUserFinalizeProcessing()
75 {
76
77 //  THE FINALIZATION METHOD BODY :
78 //    Here does nothing 
79 //    but this is where you should desallocate the internal/output pointers 
80 //    if any
81   
82 }
83 }
84 // EO namespace bbvtk
85
86