]> Creatis software - bbtk.git/blob - packages/gdcmvtk/src/bbgdcmvtkGetInfoGdcmReader.h
Feature #1774
[bbtk.git] / packages / gdcmvtk / src / bbgdcmvtkGetInfoGdcmReader.h
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 #ifdef _USE_VTK_
28
29 #ifndef __bbgdcmvtkGetInfoGdcmReader_h_INCLUDED__
30 #define __bbgdcmvtkGetInfoGdcmReader_h_INCLUDED__
31
32 #include "bbgdcmvtk_EXPORT.h"
33 #include "bbtkAtomicBlackBox.h"
34 #include "iostream"
35
36 #if defined USE_GDCM
37 #include "vtkGdcmReader.h"
38 #endif
39 #if defined USE_GDCM2
40 #include "vtkGDCMImageReader.h"
41 #endif
42
43 #include "vtkImageData.h"
44
45 namespace bbgdcmvtk
46 {
47
48 class bbgdcmvtk_EXPORT GetInfoGdcmReader
49  : 
50    public bbtk::AtomicBlackBox
51 {
52   BBTK_BLACK_BOX_INTERFACE(GetInfoGdcmReader,bbtk::AtomicBlackBox);
53
54   BBTK_DECLARE_INPUT(In,            std::string);
55   BBTK_DECLARE_OUTPUT(Out,          vtkImageData *);
56   BBTK_DECLARE_OUTPUT(IPP,          std::vector<double>);
57   BBTK_DECLARE_OUTPUT(IOP,          std::vector<double>);
58   BBTK_DECLARE_OUTPUT(PixelSpacing, std::vector<double>);
59   BBTK_DECLARE_OUTPUT(InterSlice,   double);
60        
61   BBTK_PROCESS(Process);
62   void Process();
63   
64   private:
65 #if defined USE_GDCM
66      GDCM_NAME_SPACE::File *f;
67          vtkGdcmReader *reader;
68 #endif
69 #if defined USE_GDCM2
70          vtkGDCMImageReader *reader;
71 #endif
72
73  
74 };
75
76   //=================================================================
77   // UserBlackBox description
78 BBTK_BEGIN_DESCRIBE_BLACK_BOX(GetInfoGdcmReader,bbtk::AtomicBlackBox);
79 BBTK_NAME("GetInfoGdcmReader");
80 BBTK_AUTHOR("jpr, eduardo");
81 BBTK_DESCRIPTION("Get Dicom info (for a single File) and read (as a vtkImageData)");
82 BBTK_CATEGORY("");
83
84 BBTK_INPUT(GetInfoGdcmReader,In,           "Dicom image file name",       std::string,"");
85
86 BBTK_OUTPUT(GetInfoGdcmReader,Out,         "Output image",                vtkImageData *,"");
87 BBTK_OUTPUT(GetInfoGdcmReader,IPP,         "Image Position (Patient)",    std::vector<double>,"");
88 BBTK_OUTPUT(GetInfoGdcmReader,IOP,         "Image Orientation (Patient)", std::vector<double>,"");
89 BBTK_OUTPUT(GetInfoGdcmReader,PixelSpacing,"Pixel Spacing",               std::vector<double>,"");
90 BBTK_OUTPUT(GetInfoGdcmReader,InterSlice,  "InterSlice",                  double,"");
91 BBTK_END_DESCRIBE_BLACK_BOX(GetInfoGdcmReader);
92 } // EO namespace bbgdcmvtk
93
94 #endif // __bbgdcmvtkGetInfoGdcmReader_h_INCLUDED__
95
96 #endif //_USE_VTK_