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

itkDeformationFieldSource.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkDeformationFieldSource.h,v $
00005   Language:  C++
00006   Date:      $Date: 2008-10-14 19:20:33 $
00007   Version:   $Revision: 1.5 $
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 __itkDeformationFieldSource_h
00018 #define __itkDeformationFieldSource_h
00019 
00020 #include "itkImageSource.h"
00021 #include "itkKernelTransform.h"
00022 #include "itkImageRegionIteratorWithIndex.h"
00023 
00024 namespace itk
00025 {
00026 
00047 template <class TOutputImage>
00048 class ITK_EXPORT DeformationFieldSource:
00049     public ImageSource<TOutputImage>
00050 {
00051 public:
00053   typedef DeformationFieldSource         Self;
00054   typedef ImageSource<TOutputImage>      Superclass;
00055   typedef SmartPointer<Self>             Pointer;
00056   typedef SmartPointer<const Self>       ConstPointer;
00057 
00058   typedef TOutputImage                          OutputImageType;
00059   typedef typename OutputImageType::Pointer     OutputImagePointer;
00060   typedef typename OutputImageType::RegionType  OutputImageRegionType;
00061 
00063   itkNewMacro(Self);  
00064 
00066   itkTypeMacro(DeformationFieldSource, ImageSource);
00067 
00069   itkStaticConstMacro(ImageDimension, unsigned int,
00070                       TOutputImage::ImageDimension);
00071 
00076   typedef KernelTransform<double, itkGetStaticConstMacro(ImageDimension)> KernelTransformType;
00077   typedef typename KernelTransformType::PointSetType      LandmarkPointSetType;
00078   typedef typename LandmarkPointSetType::PointType        LandmarkPointType;
00079   typedef typename KernelTransformType::Pointer           KernelTransformPointerType;
00080   typedef typename KernelTransformType::PointsContainer   LandmarkContainer;
00081   typedef typename LandmarkContainer::ConstPointer        LandmarkContainerPointer;
00082 
00083 
00085   typedef typename OutputImageType::SizeType      OutputSizeType;
00086 
00088   typedef typename OutputImageType::IndexType     OutputIndexType;
00089 
00091   typedef typename TOutputImage::PixelType        OutputPixelType;
00092   typedef typename OutputPixelType::ValueType     OutputPixelComponentType;
00093 
00095   typedef typename TOutputImage::SpacingType      SpacingType;
00096   typedef typename TOutputImage::PointType        OriginPointType;
00097 
00101   itkSetObjectMacro( KernelTransform, KernelTransformType ); 
00102 
00104   itkGetObjectMacro( KernelTransform, KernelTransformType );
00105 
00107   itkSetMacro( OutputRegion, OutputImageRegionType );
00108 
00110   itkGetConstReferenceMacro( OutputRegion, OutputImageRegionType );
00111 
00113   itkSetMacro(OutputSpacing, SpacingType);
00114   virtual void SetOutputSpacing( const double* values);
00116 
00118   itkGetConstReferenceMacro( OutputSpacing, SpacingType );
00119 
00121   itkSetMacro(OutputOrigin, OriginPointType);
00122   virtual void SetOutputOrigin( const double* values);
00124 
00126   itkGetConstReferenceMacro( OutputOrigin, OriginPointType );
00127 
00129   itkSetConstObjectMacro( SourceLandmarks, LandmarkContainer );
00130   itkSetConstObjectMacro( TargetLandmarks, LandmarkContainer );
00132 
00138   virtual void GenerateOutputInformation();
00139 
00140 
00142   unsigned long GetMTime( void ) const;
00143 
00144 protected:
00145   DeformationFieldSource();
00146   ~DeformationFieldSource() {};
00147   void PrintSelf(std::ostream& os, Indent indent) const;
00148 
00153   void GenerateData();
00154 
00158   void PrepareKernelBaseSpline();
00159 
00160 private:
00161   DeformationFieldSource(const Self&); //purposely not implemented
00162   void operator=(const Self&); //purposely not implemented
00163 
00164   KernelTransformPointerType    m_KernelTransform;   // Coordinate transform to use
00165 
00166   OutputImageRegionType         m_OutputRegion;      // Region of the output image
00167   SpacingType                   m_OutputSpacing;     // output image spacing
00168   OriginPointType               m_OutputOrigin;      // output image origin
00169 
00170   LandmarkContainerPointer      m_SourceLandmarks;   // List of source landmarks
00171   LandmarkContainerPointer      m_TargetLandmarks;   // List of target landmarks
00172 
00173 };
00174 
00175   
00176 } // end namespace itk
00177   
00178 #ifndef ITK_MANUAL_INSTANTIATION
00179 #include "itkDeformationFieldSource.txx"
00180 #endif
00181   
00182 #endif
00183 

Generated at Wed Nov 5 21:07:06 2008 for ITK by doxygen 1.5.1 written by Dimitri van Heesch, © 1997-2000