]> Creatis software - bbtk.git/blob - packages/gdcmvtk/src/bbgdcmvtkGetInfoGdcmReader.h
Feature #1774
[bbtk.git] / packages / gdcmvtk / src / bbgdcmvtkGetInfoGdcmReader.h
1 # ---------------------------------------------------------------------
2 #
3 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
4 #                        pour la SantÈ)
5 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
6 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
7 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
8 #
9 #  This software is governed by the CeCILL-B license under French law and
10 #  abiding by the rules of distribution of free software. You can  use,
11 #  modify and/ or redistribute the software under the terms of the CeCILL-B
12 #  license as circulated by CEA, CNRS and INRIA at the following URL
13 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
14 #  or in the file LICENSE.txt.
15 #
16 #  As a counterpart to the access to the source code and  rights to copy,
17 #  modify and redistribute granted by the license, users are provided only
18 #  with a limited warranty  and the software's author,  the holder of the
19 #  economic rights,  and the successive licensors  have only  limited
20 #  liability.
21 #
22 #  The fact that you are presently reading this means that you have had
23 #  knowledge of the CeCILL-B license and that you accept its terms.
24 # ------------------------------------------------------------------------ */
25
26 #ifdef _USE_VTK_
27
28 #ifndef __bbgdcmvtkGetInfoGdcmReader_h_INCLUDED__
29 #define __bbgdcmvtkGetInfoGdcmReader_h_INCLUDED__
30
31 #include "bbgdcmvtk_EXPORT.h"
32 #include "bbtkAtomicBlackBox.h"
33 #include "iostream"
34
35 #if defined USE_GDCM
36 #include "vtkGdcmReader.h"
37 #endif
38 #if defined USE_GDCM2
39 #include "vtkGDCMImageReader.h"
40 #endif
41
42 #include "vtkImageData.h"
43
44 namespace bbgdcmvtk
45 {
46
47 class bbgdcmvtk_EXPORT GetInfoGdcmReader
48  : 
49    public bbtk::AtomicBlackBox
50 {
51   BBTK_BLACK_BOX_INTERFACE(GetInfoGdcmReader,bbtk::AtomicBlackBox);
52
53   BBTK_DECLARE_INPUT(In,            std::string);
54   BBTK_DECLARE_OUTPUT(Out,          vtkImageData *);
55   BBTK_DECLARE_OUTPUT(IPP,          std::vector<double>);
56   BBTK_DECLARE_OUTPUT(IOP,          std::vector<double>);
57   BBTK_DECLARE_OUTPUT(PixelSpacing, std::vector<double>);
58   BBTK_DECLARE_OUTPUT(InterSlice,   double);
59        
60   BBTK_PROCESS(Process);
61   void Process();
62   
63   private:
64 #if defined USE_GDCM
65      GDCM_NAME_SPACE::File *f;
66          vtkGdcmReader *reader;
67 #endif
68 #if defined USE_GDCM2
69          vtkGDCMImageReader *reader;
70 #endif
71
72  
73 };
74
75   //=================================================================
76   // UserBlackBox description
77 BBTK_BEGIN_DESCRIBE_BLACK_BOX(GetInfoGdcmReader,bbtk::AtomicBlackBox);
78 BBTK_NAME("GetInfoGdcmReader");
79 BBTK_AUTHOR("jpr, eduardo");
80 BBTK_DESCRIPTION("Get Dicom info (for a single File) and read (as a vtkImageData)");
81 BBTK_CATEGORY("");
82
83 BBTK_INPUT(GetInfoGdcmReader,In,           "Dicom image file name",       std::string,"");
84
85 BBTK_OUTPUT(GetInfoGdcmReader,Out,         "Output image",                vtkImageData *,"");
86 BBTK_OUTPUT(GetInfoGdcmReader,IPP,         "Image Position (Patient)",    std::vector<double>,"");
87 BBTK_OUTPUT(GetInfoGdcmReader,IOP,         "Image Orientation (Patient)", std::vector<double>,"");
88 BBTK_OUTPUT(GetInfoGdcmReader,PixelSpacing,"Pixel Spacing",               std::vector<double>,"");
89 BBTK_OUTPUT(GetInfoGdcmReader,InterSlice,  "InterSlice",                  double,"");
90 BBTK_END_DESCRIBE_BLACK_BOX(GetInfoGdcmReader);
91 } // EO namespace bbgdcmvtk
92
93 #endif // __bbgdcmvtkGetInfoGdcmReader_h_INCLUDED__
94
95 #endif //_USE_VTK_