Main Page   Groups   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Concepts

itkBSplineCenteredResampleImageFilterBase.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkBSplineCenteredResampleImageFilterBase.h,v $
00005   Language:  C++
00006   Date:      $Date: 2008-10-09 20:43:42 $
00007   Version:   $Revision: 1.7 $
00008 
00009   Copyright (c) Insight Software Consortium. All rights reserved.
00010   See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
00011 
00012   Portions of this code are covered under the VTK copyright.
00013   See VTKCopyright.txt or http://www.kitware.com/VTKCopyright.htm for details.
00014 
00015      This software is distributed WITHOUT ANY WARRANTY; without even 
00016      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00017      PURPOSE.  See the above copyright notices for more information.
00018 
00019 =========================================================================*/
00020 
00021 #ifndef __itkBSplineCenteredResampleImageFilterBase_h
00022 #define __itkBSplineCenteredResampleImageFilterBase_h
00023 
00024 #include "itkBSplineResampleImageFilterBase.h"
00025 #include <vector>
00026 
00027 
00028 namespace itk
00029 {
00056 class ProgressReporter;
00057 
00058 template <class TInputImage, class TOutputImage>
00059 class ITK_EXPORT BSplineCenteredResampleImageFilterBase : 
00060     public BSplineResampleImageFilterBase<TInputImage, TOutputImage>  
00061 {
00062 public:
00064   typedef BSplineCenteredResampleImageFilterBase                     Self;
00065   typedef BSplineResampleImageFilterBase<TInputImage, TOutputImage>  Superclass;
00066   typedef SmartPointer<Self>                                         Pointer;
00067   typedef SmartPointer<const Self>                                   ConstPointer;
00068 
00070   itkTypeMacro(BSplineCenteredResampleImageFilterBase, BSplineResampleImageFilterBase);
00071 
00072  
00074   itkNewMacro( Self );
00075 
00077   typedef typename Superclass::OutputImagePixelType OutputImagePixelType;
00078 
00080   typedef typename Superclass::OutputImageIterator OutputImageIterator;
00081 
00082 protected:
00083 
00084   virtual void InitializePyramidSplineFilter(int SplineOrder);
00085   virtual void Reduce1DImage( 
00086     const std::vector<double> & In, 
00087     OutputImageIterator & Iter, 
00088     unsigned int traverseSize,
00089     ProgressReporter &progress
00090     );
00091 
00092   virtual void Expand1DImage( 
00093     const std::vector<double> & In, 
00094     OutputImageIterator & Iter, 
00095     unsigned int traverseSize,
00096     ProgressReporter &progress
00097     );
00098 
00099 protected:
00100   BSplineCenteredResampleImageFilterBase();
00101   virtual ~BSplineCenteredResampleImageFilterBase() {};
00102   void PrintSelf(std::ostream& os, Indent indent) const;
00103     
00104 
00105 private:
00106   BSplineCenteredResampleImageFilterBase( const Self& ); //purposely not implemented
00107   void operator=( const Self& ); //purposely not implemented
00108   
00109 };
00110 
00111 } // namespace itk
00112 
00113 #ifndef ITK_MANUAL_INSTANTIATION
00114 #include "itkBSplineCenteredResampleImageFilterBase.txx"
00115 #endif
00116 
00117 #endif
00118 

Generated at Wed Nov 5 20:38:35 2008 for ITK by doxygen 1.5.1 written by Dimitri van Heesch, © 1997-2000