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

itkReflectImageFilter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkReflectImageFilter.h,v $
00005   Language:  C++
00006   Date:      $Date: 2003/09/10 14:28:55 $
00007   Version:   $Revision: 1.8 $
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      This software is distributed WITHOUT ANY WARRANTY; without even 
00013      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00014      PURPOSE.  See the above copyright notices for more information.
00015 
00016 =========================================================================*/
00017 #ifndef __itkReflectImageFilter_h
00018 #define __itkReflectImageFilter_h
00019 
00020 #include "itkImageToImageFilter.h"
00021 
00022 namespace itk
00023 {
00024   
00033 template <class TInputImage, class TOutputImage>
00034 class ITK_EXPORT ReflectImageFilter : public ImageToImageFilter<TInputImage,TOutputImage> 
00035 {
00036 public:
00038   typedef ReflectImageFilter  Self;
00039   typedef ImageToImageFilter<TInputImage,TOutputImage>  Superclass;
00040   typedef SmartPointer<Self>   Pointer;
00041   typedef SmartPointer<const Self>  ConstPointer;
00042 
00044   itkNewMacro(Self);
00045   
00047   itkTypeMacro(ReflectImageFilter, ImageToImageFilter);
00048 
00050   typedef TInputImage InputImageType;
00051   typedef typename    InputImageType::Pointer    InputImagePointer;
00052   typedef typename    InputImageType::RegionType InputImageRegionType; 
00053   typedef typename    InputImageType::PixelType  InputImagePixelType; 
00054   typedef TOutputImage OutputImageType;
00055   typedef typename     OutputImageType::Pointer    OutputImagePointer;
00056   typedef typename     OutputImageType::RegionType OutputImageRegionType;
00057   typedef typename     OutputImageType::PixelType  OutputImagePixelType;
00058 
00060   itkGetMacro( Direction, unsigned int );
00061   itkSetMacro( Direction, unsigned int );
00062   
00063 protected:
00064   ReflectImageFilter();
00065   virtual ~ReflectImageFilter() {};
00066   void PrintSelf(std::ostream& os, Indent indent) const;
00067 
00072   void GenerateData(void);
00073 
00074 private:
00075   ReflectImageFilter(const Self&); //purposely not implemented
00076   void operator=(const Self&); //purposely not implemented
00077 
00078   unsigned int m_Direction;
00079 
00080 };
00081 
00082 } // end namespace itk
00083 
00084 #ifndef ITK_MANUAL_INSTANTIATION
00085 #include "itkReflectImageFilter.txx"
00086 #endif
00087 
00088 #endif

Generated at Wed May 24 23:57:49 2006 for ITK by doxygen 1.3.5 written by Dimitri van Heesch, © 1997-2000