]> Creatis software - bbtk.git/blob - packages/itk/src/bbitkImageProperties.cxx
no message
[bbtk.git] / packages / itk / src / bbitkImageProperties.cxx
1 /*=========================================================================                                                                               
2   Program:   bbtk
3   Module:    $RCSfile: bbitkImageProperties.cxx,v $
4   Language:  C++
5   Date:      $Date: 2011/02/27 18:30:48 $
6   Version:   $Revision: 1.13 $
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 
34  */
35 #ifdef _USE_ITK_
36
37 #include "bbitkImageProperties.h"
38 #include "bbitkPackage.h"
39
40 namespace bbitk 
41 {
42   BBTK_BLACK_BOX_IMPLEMENTATION(ImageProperties,bbtk::AtomicBlackBox);
43
44   BBTK_ADD_BLACK_BOX_TO_PACKAGE(itk,ImageProperties);
45
46         //-----------------------------------------------------------------     
47         void ImageProperties::bbUserSetDefaultValues()
48         {
49         }
50
51         //-----------------------------------------------------------------     
52         void ImageProperties::bbUserInitializeProcessing()
53         {
54         }
55
56         //-----------------------------------------------------------------     
57         void ImageProperties::bbUserFinalizeProcessing()
58         {
59         }
60
61   void ImageProperties::DoIt()
62   {
63     BBTK_TEMPLATE_ITK_IMAGE_SWITCH(bbGetInputIn().type(),DoIt);
64   }
65
66   /** 
67       Template Processing 
68   */
69   template<class itkImageType>
70   void ImageProperties::DoIt()
71   {
72     bbtkDebugMessageInc("Core",9,"bbitk::ImageProperties::DoIt<"
73                         <<bbtk::TypeName<itkImageType>()
74                         <<">()"<<std::endl);
75
76     itkImageType* im = bbGetInputIn().get<itkImageType*>();
77     unsigned int dim = im->GetImageDimension();
78
79     bbSetOutputTypeName(bbtk::TypeName<typename itkImageType::PixelType>());
80     bbSetOutputDimension(dim);
81     const typename itkImageType::RegionType& r =im->GetLargestPossibleRegion();
82     bbSetOutputLargestPossibleRegion(r);
83
84     const typename itkImageType::IndexType& ind = r.GetIndex();
85     std::vector<int> vind;
86     for (unsigned int i=0;i<dim;++i) 
87        vind.push_back(ind[i]);
88     bbSetOutputIndex(vind);
89
90     const typename itkImageType::SizeType& sz = r.GetSize();
91     std::vector<int> vsz;
92     for (unsigned int i=0;i<dim;++i) 
93        vsz.push_back(sz[i]);
94     
95   // brute hack to avoid failure of most black boxes that expects 3D images. // JPR
96    if (dim==2)
97         vsz.push_back(1);
98     bbSetOutputSize(vsz);
99
100     typename itkImageType::SpacingType sp = im->GetSpacing();
101     std::vector<float> vsp;
102     for (unsigned int i=0;i<dim;++i) 
103        vsp.push_back(sp[i]);
104        
105  // brute hack to avoid failure of most black boxes that expects 3D images. // JPR
106     if (dim==2)
107        vsp.push_back(1.0);
108   
109     bbSetOutputSpacing(vsp);
110
111
112   // Min Max Value                     // EED
113           //itk::MinimumMaximumImageFilter< TInputImage >
114 //        itk::MinimumMaximumImageFilter   minmaxfilter itk::MinimumMaximumImageFilter< im >
115           std::vector<float> vminmax;
116 //        vminmax.push_back( minmaxfilter->GetMaximumOutput() );
117 //        vminmax.push_back( minmaxfilter->GetMinimumOutput() );
118           vminmax.push_back( 17 );
119           vminmax.push_back( 1972 );
120           
121           bbSetOutputMinMax(vminmax);
122           
123     bbtkDebugDecTab("Core",9);
124   }
125 }
126 // eo namespace bbtk
127
128 #endif