]> Creatis software - clitk.git/blob - tools/clitkVectorImageToImageFilter.txx
changes in license header
[clitk.git] / tools / clitkVectorImageToImageFilter.txx
1 /*=========================================================================
2   Program:   vv                     http://www.creatis.insa-lyon.fr/rio/vv
3
4   Authors belong to: 
5   - University of LYON              http://www.universite-lyon.fr/
6   - Léon Bérard cancer center       http://www.centreleonberard.fr
7   - CREATIS CNRS laboratory         http://www.creatis.insa-lyon.fr
8
9   This software is distributed WITHOUT ANY WARRANTY; without even
10   the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11   PURPOSE.  See the copyright notices for more information.
12
13   It is distributed under dual licence
14
15   - BSD        See included LICENSE.txt file
16   - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17 ===========================================================================**/
18 #ifndef clitkVectorImageToImageFilter_txx
19 #define clitkVectorImageToImageFilter_txx
20
21 /* =================================================
22  * @file   clitkVectorImageToImageFilter.txx
23  * @author 
24  * @date   
25  * 
26  * @brief 
27  * 
28  ===================================================*/
29
30
31 namespace clitk
32 {
33
34   //-------------------------------------------------------------------
35   // Constructor
36   //-------------------------------------------------------------------
37   template<class InputImageType, class OutputImageType>
38   VectorImageToImageFilter<InputImageType, OutputImageType>::VectorImageToImageFilter()
39   {
40    m_Verbose=false;
41    m_ComponentIndex=0;
42   }
43
44
45   //-------------------------------------------------------------------
46   // Generate Data
47   //-------------------------------------------------------------------
48   template<class InputImageType, class  OutputImageType> 
49   void 
50   VectorImageToImageFilter<InputImageType, OutputImageType>::ThreadedGenerateData(const OutputImageRegionType & outputRegionForThread, int threadId)
51   {
52     // Iterators
53     typename OutputImageType::Pointer output=this->GetOutput();
54     typename InputImageType::ConstPointer input=this->GetInput();
55
56     typedef itk::ImageRegionConstIterator<InputImageType> InputIteratorType;
57     InputIteratorType inputIt (input, outputRegionForThread);
58
59     typedef itk::ImageRegionIterator<OutputImageType> OutputIteratorType;
60     OutputIteratorType outputIt (output, outputRegionForThread);
61     
62     while(! inputIt.IsAtEnd() )
63       {
64         outputIt.Set(inputIt.Get()[m_ComponentIndex]);
65         ++outputIt;
66         ++inputIt;
67       }
68   }
69
70
71 }//end clitk
72  
73 #endif //#define clitkVectorImageToImageFilter_txx