]> Creatis software - bbtk.git/blob - packages/itk/src/bbitkImageRegion.cxx
Feature #1774
[bbtk.git] / packages / itk / src / bbitkImageRegion.cxx
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
28 /*=========================================================================
29   Program:   bbtk
30   Module:    $RCSfile: bbitkImageRegion.cxx,v $
31   Language:  C++
32   Date:      $Date: 2012/11/16 08:50:39 $
33   Version:   $Revision: 1.7 $
34 =========================================================================*/
35
36
37
38
39 #ifdef _USE_ITK_
40
41 #include "bbitkImageRegion.h"
42 #include "bbitkPackage.h"
43
44 namespace bbitk
45 {
46
47   BBTK_BLACK_BOX_IMPLEMENTATION(ImageRegionCreator,
48                                 bbtk::AtomicBlackBox);
49
50   BBTK_ADD_BLACK_BOX_TO_PACKAGE(itk,ImageRegionCreator);
51
52   
53   void ImageRegionCreator::bbUserSetDefaultValues()             
54   {     }
55   void ImageRegionCreator::bbUserInitializeProcessing() 
56   {     }
57   void ImageRegionCreator::bbUserFinalizeProcessing()           
58   {     }
59         
60   
61   void ImageRegionCreator::DoIt()
62   {
63     const std::vector<long>& index = bbGetInputIndex();
64     const std::vector<long>& size = bbGetInputSize();
65     //             std::cout<< "isize="<<index.size()<<std::endl;
66     //     std::cout<< "ssize="<<size.size()<<std::endl;
67     unsigned long maxs = index.size() > size.size() ? index.size() : size.size();
68     switch (maxs) 
69       {
70       case 2 : DoItForDimension<2>(); break;
71       case 3 : DoItForDimension<3>(); break;
72       case 4 : DoItForDimension<4>(); break;
73       default : bbtkError("ImageRegionCreator : cannot build a region of dimension "<<maxs);
74       }
75      
76
77   }
78
79   template <unsigned int Dimension>
80   void ImageRegionCreator::DoItForDimension()
81   {
82     std::vector<long> index = bbGetInputIndex();
83     std::vector<long> size = bbGetInputSize();
84     //             std::cout<< "isize="<<index.size()<<std::endl;
85     //             std::cout<< "ssize="<<size.size()<<std::endl;
86  
87     int ds = index.size() - size.size();
88     if (ds<0) 
89       {
90         for (int i=0;i<-ds;++i) 
91  index.push_back(0);
92       }
93     else 
94       {
95         for (int i=0;i<ds;++i) size.push_back(0);
96       }
97
98     typename itk::ImageRegion<Dimension>::IndexType I;
99     typename itk::ImageRegion<Dimension>::SizeType S;
100
101     std::vector<long>::const_iterator ii,si;
102     int d(0);
103     for (ii=index.begin(), si=size.begin(); 
104          ii!=index.end(); ++ii, ++si, ++d)
105       {
106         I[d] = *ii;
107         S[d] = *si;
108         //  std::cout << "o="<<*ii<<" d="<<*si<<std::endl;
109       }
110
111
112     bbSetOutputOut ( itk::ImageRegion<Dimension>(I,S) );
113   }
114
115 }
116 // eo namespace
117
118 #endif