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

itkPathToImageFilter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkPathToImageFilter.h,v $
00005   Language:  C++
00006   Date:      $Date: 2005/07/27 15:21:11 $
00007   Version:   $Revision: 1.3 $
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 __itkPathToImageFilter_h
00018 #define __itkPathToImageFilter_h
00019 
00020 #include "itkImageSource.h"
00021 #include "itkConceptChecking.h"
00022 
00023 namespace itk
00024 {
00025   
00034 template <class TInputPath, class TOutputImage>
00035 class ITK_EXPORT PathToImageFilter : public ImageSource<TOutputImage>
00036 {
00037 public:
00039   typedef PathToImageFilter  Self;
00040   typedef ImageSource<TOutputImage>  Superclass;
00041   typedef SmartPointer<Self>  Pointer;
00042   typedef SmartPointer<const Self>  ConstPointer;
00043   
00045   itkNewMacro(Self);
00046   
00048   itkTypeMacro(PathToImageFilter,ImageSource);
00049   
00051   typedef typename Superclass::OutputImageRegionType  OutputImageRegionType;    
00052   typedef          TInputPath                         InputPathType;
00053   typedef typename InputPathType::Pointer             InputPathPointer;
00054   typedef typename InputPathType::ConstPointer        InputPathConstPointer;
00055   typedef          TOutputImage                       OutputImageType;          
00056   typedef typename OutputImageType::Pointer           OutputImagePointer;       
00057   typedef typename OutputImageType::SizeType          SizeType;                 
00058   typedef typename OutputImageType::ValueType         ValueType;                
00059 
00061   itkStaticConstMacro(OutputImageDimension, unsigned int,
00062                       TOutputImage::ImageDimension);
00063 
00065   virtual void SetInput( const InputPathType *path);
00066   virtual void SetInput( unsigned int, const TInputPath * path);
00067   const InputPathType * GetInput(void);
00068   const InputPathType * GetInput(unsigned int idx);
00069 
00074   virtual void SetSpacing( const double* spacing);
00075   virtual void SetSpacing( const float* spacing);
00076   virtual const double* GetSpacing() const;
00077 
00080   itkSetMacro(PathValue, ValueType);
00081   itkGetMacro(PathValue, ValueType);
00082   itkSetMacro(BackgroundValue, ValueType);
00083   itkGetMacro(BackgroundValue, ValueType);
00084 
00089   virtual void SetOrigin( const double* origin);
00090   virtual void SetOrigin( const float* origin);
00091   virtual const double * GetOrigin() const;
00092 
00094   itkSetMacro(Size,SizeType);
00095   itkGetMacro(Size,SizeType);
00096 
00097 protected:
00098   PathToImageFilter();
00099   ~PathToImageFilter();
00100 
00101   virtual void GenerateOutputInformation(){}; // do nothing
00102   virtual void GenerateData();
00103 
00104 
00105   SizeType     m_Size;
00106   double       m_Spacing[OutputImageDimension];
00107   double       m_Origin[OutputImageDimension];
00108   ValueType    m_PathValue;
00109   ValueType    m_BackgroundValue;
00110 
00111   virtual void PrintSelf(std::ostream& os, Indent indent) const;
00112 
00113 private:
00114   PathToImageFilter(const Self&); //purposely not implemented
00115   void operator=(const Self&); //purposely not implemented
00116 
00117 };
00118 
00119 } // end namespace itk
00120 
00121 #ifndef ITK_MANUAL_INSTANTIATION
00122 #include "itkPathToImageFilter.txx"
00123 #endif
00124 
00125 #endif

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