ITK  4.1.0
Insight Segmentation and Registration Toolkit
itkProjectedLandweberDeconvolutionImageFilter.h
Go to the documentation of this file.
00001 /*=========================================================================
00002  *
00003  *  Copyright Insight Software Consortium
00004  *
00005  *  Licensed under the Apache License, Version 2.0 (the "License");
00006  *  you may not use this file except in compliance with the License.
00007  *  You may obtain a copy of the License at
00008  *
00009  *         http://www.apache.org/licenses/LICENSE-2.0.txt
00010  *
00011  *  Unless required by applicable law or agreed to in writing, software
00012  *  distributed under the License is distributed on an "AS IS" BASIS,
00013  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00014  *  See the License for the specific language governing permissions and
00015  *  limitations under the License.
00016  *
00017  *=========================================================================*/
00018 #ifndef __itkProjectedLandweberDeconvolutionImageFilter_h
00019 #define __itkProjectedLandweberDeconvolutionImageFilter_h
00020 
00021 #include "itkProjectedIterativeDeconvolutionImageFilter.h"
00022 #include "itkLandweberDeconvolutionImageFilter.h"
00023 
00024 namespace itk
00025 {
00051 template< class TInputImage, class TKernelImage=TInputImage, class TOutputImage=TInputImage >
00052 class ITK_EXPORT ProjectedLandweberDeconvolutionImageFilter :
00053     public ProjectedIterativeDeconvolutionImageFilter< LandweberDeconvolutionImageFilter< TInputImage, TKernelImage, TOutputImage > >
00054 {
00055 public:
00057   typedef ProjectedLandweberDeconvolutionImageFilter            Self;
00058   typedef ProjectedIterativeDeconvolutionImageFilter<
00059             LandweberDeconvolutionImageFilter< TInputImage,
00060                                                TKernelImage,
00061                                                TOutputImage > > Superclass;
00062   typedef SmartPointer< Self >                                  Pointer;
00063   typedef SmartPointer< const Self >                            ConstPointer;
00064 
00066   typedef TInputImage  InputImageType;
00067   typedef TKernelImage KernelImageType;
00068   typedef TOutputImage OutputImageType;
00069 
00071   itkNewMacro(Self);
00072 
00074   itkTypeMacro(ProjectedLandweberDeconvolutionImageFilter,
00075                ProjectedIterativeDeconvolutionImageFilter);
00076 
00077 protected:
00078   ProjectedLandweberDeconvolutionImageFilter();
00079   virtual ~ProjectedLandweberDeconvolutionImageFilter();
00080 
00081 private:
00082   ProjectedLandweberDeconvolutionImageFilter(const Self &); // purposely not implemented
00083   void operator=(const Self &); // purposely not implemented
00084 
00085 };
00086 } // end namespace itk
00087 
00088 #ifndef ITK_MANUAL_INSTANTIATION
00089 #include "itkProjectedLandweberDeconvolutionImageFilter.hxx"
00090 #endif
00091 
00092 
00093 #endif
00094