]> Creatis software - bbtk.git/blob - packages/itk/src/bbitkImageReader.h
fa25357a747db42c510ade8b80e40ce7060b4494
[bbtk.git] / packages / itk / src / bbitkImageReader.h
1 /*=========================================================================                                                                               
2   Program:   bbtk
3   Module:    $RCSfile: bbitkImageReader.h,v $
4   Language:  C++
5   Date:      $Date: 2010/04/08 14:37:58 $
6   Version:   $Revision: 1.9 $
7 =========================================================================*/
8
9 /* ---------------------------------------------------------------------
10
11 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
12 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
13 *
14 *  This software is governed by the CeCILL-B license under French law and 
15 *  abiding by the rules of distribution of free software. You can  use, 
16 *  modify and/ or redistribute the software under the terms of the CeCILL-B 
17 *  license as circulated by CEA, CNRS and INRIA at the following URL 
18 *  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
19 *  or in the file LICENSE.txt.
20 *
21 *  As a counterpart to the access to the source code and  rights to copy,
22 *  modify and redistribute granted by the license, users are provided only
23 *  with a limited warranty  and the software's author,  the holder of the
24 *  economic rights,  and the successive licensors  have only  limited
25 *  liability. 
26 *
27 *  The fact that you are presently reading this means that you have had
28 *  knowledge of the CeCILL-B license and that you accept its terms.
29 * ------------------------------------------------------------------------ */                                                                         
30
31 /**
32  * \file 
33  * \brief class ITKImageReader : generic ITKImage reader
34  */
35 /**
36  * \class bbtk::ITKImageReader
37  * \brief Generic ITKImage reader
38  */
39 #ifdef _USE_ITK_
40
41 #ifndef __bbitkImageReader_h_INCLUDED__
42 #define __bbitkImageReader_h_INCLUDED__
43
44 #include "bbtkAtomicBlackBox.h"
45 #include "bbitkImage.h"
46
47 namespace bbitk
48 {
49
50   //=================================================================
51   // BlackBox declaration
52   class ImageReader : public bbtk::AtomicBlackBox  
53   {
54     
55     BBTK_BLACK_BOX_INTERFACE(ImageReader,
56                              bbtk::AtomicBlackBox);
57
58     BBTK_DECLARE_INPUT(In,std::string);
59     BBTK_DECLARE_OUTPUT(Out, anyImagePointer);
60     BBTK_PROCESS(Read);
61     void Read();
62
63   private:
64     // Template read method 
65     template<class itkImageType> void Read();
66   };
67   //=================================================================  
68
69   //=================================================================
70   // BlackBox description
71   BBTK_BEGIN_DESCRIBE_BLACK_BOX(ImageReader,bbtk::AtomicBlackBox);
72   BBTK_NAME("ImageReader");
73   BBTK_AUTHOR("laurent.guigues at creatis.insa-lyon.fr");
74   BBTK_CATEGORY("image; read/write");
75   BBTK_DESCRIPTION("Generic itk image reader");
76   BBTK_INPUT(ImageReader, In,
77              "filename with complete path", std::string,"file name");
78   BBTK_OUTPUT(ImageReader, Out, "Output image" ,anyImagePointer,"");
79   BBTK_END_DESCRIBE_BLACK_BOX(ImageReader);
80   //=================================================================
81   
82
83 }
84 //namespace bbtk
85 #endif
86
87 #endif