]> Creatis software - clitk.git/blob - common/clitkImageToImageGenericFilterBase.txx
- no modification
[clitk.git] / common / clitkImageToImageGenericFilterBase.txx
1 /*=========================================================================
2
3   Program:   vv
4   Module:    $RCSfile: clitkImageToImageGenericFilterBase.txx,v $
5   Language:  C++
6   Date:      $Date: 2010/03/03 13:00:36 $
7   Version:   $Revision: 1.2 $
8   Author :   Joel Schaerer <joel.schaerer@creatis.insa-lyon.fr>
9   David Sarrut <david.sarrut@creatis.insa-lyon.fr>
10
11   Copyright (C) 2008
12   Léon Bérard cancer center http://oncora1.lyon.fnclcc.fr
13   CREATIS-LRMN http://www.creatis.insa-lyon.fr
14
15   This program is free software: you can redistribute it and/or modify
16   it under the terms of the GNU General Public License as published by
17   the Free Software Foundation, version 3 of the License.
18
19   This program is distributed in the hope that it will be useful,
20   but WITHOUT ANY WARRANTY; without even the implied warranty of
21   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22   GNU General Public License for more details.
23
24   You should have received a copy of the GNU General Public License
25   along with this program.  If not, see <http://www.gnu.org/licenses/>.
26
27   =========================================================================*/
28
29 // //--------------------------------------------------------------------
30 // template<class ImageType> 
31 // void clitk::ImageToImageGenericFilterBase::SetNextOutput(typename ImageType::Pointer output) {
32 //   if (mOutputFilenames.size())
33 //     {
34 //       clitk::writeImage<ImageType>(output, mOutputFilenames.front(), mIOVerbose);
35 //       mOutputFilenames.pop_front();
36 //     }
37 //   if (mInputVVImages.size()) //We assume that if a vv image is set as input, we want one as the output
38 //     mOutputVVImages.push_back(vvImageFromITK<ImageType::ImageDimension,typename ImageType::PixelType>(output));
39 // }
40 // //--------------------------------------------------------------------
41
42
43 // //--------------------------------------------------------------------
44 // template<class ImageType> 
45 // typename ImageType::Pointer clitk::ImageToImageGenericFilterBase::GetInput(unsigned int n) {
46 //   if (mInputFilenames.size() > n) {
47 //     return clitk::readImage<ImageType>(mInputFilenames[n], mIOVerbose);
48 //   }
49 //   else if (mInputVVImages.size() > n)
50 //     return typename ImageType::Pointer(const_cast<ImageType*>(vvImageToITK<ImageType>(mInputVVImages[n]).GetPointer()));
51 //   else
52 //     {
53 //       assert(false); //No input, this shouldn't happen
54 //       return typename ImageType::Pointer(NULL);
55 //     }
56 // }
57 // //--------------------------------------------------------------------
58
59