![]() |
ITK
4.2.0
Insight Segmentation and Registration Toolkit
|
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, class TInternalPrecision=double > 00052 class ITK_EXPORT ProjectedLandweberDeconvolutionImageFilter : 00053 public ProjectedIterativeDeconvolutionImageFilter< LandweberDeconvolutionImageFilter< TInputImage, TKernelImage, TOutputImage, TInternalPrecision > > 00054 { 00055 public: 00057 typedef ProjectedLandweberDeconvolutionImageFilter Self; 00058 typedef ProjectedIterativeDeconvolutionImageFilter< 00059 LandweberDeconvolutionImageFilter< TInputImage, 00060 TKernelImage, 00061 TOutputImage, 00062 TInternalPrecision > > Superclass; 00063 typedef SmartPointer< Self > Pointer; 00064 typedef SmartPointer< const Self > ConstPointer; 00065 00067 typedef TInputImage InputImageType; 00068 typedef TKernelImage KernelImageType; 00069 typedef TOutputImage OutputImageType; 00070 00072 itkNewMacro(Self); 00073 00075 itkTypeMacro(ProjectedLandweberDeconvolutionImageFilter, 00076 ProjectedIterativeDeconvolutionImageFilter); 00077 00078 protected: 00079 ProjectedLandweberDeconvolutionImageFilter(); 00080 virtual ~ProjectedLandweberDeconvolutionImageFilter(); 00081 00082 private: 00083 ProjectedLandweberDeconvolutionImageFilter(const Self &); // purposely not implemented 00084 void operator=(const Self &); // purposely not implemented 00085 00086 }; 00087 } // end namespace itk 00088 00089 #ifndef ITK_MANUAL_INSTANTIATION 00090 #include "itkProjectedLandweberDeconvolutionImageFilter.hxx" 00091 #endif 00092 00093 00094 #endif 00095
1.7.6.1