ITK  4.1.0
Insight Segmentation and Registration Toolkit
itkWarpMeshFilter.h
Go to the documentation of this file.
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 __itkWarpMeshFilter_h
00019 #define __itkWarpMeshFilter_h
00020 
00021 #include "itkMeshToMeshFilter.h"
00022 
00023 namespace itk
00024 {
00041 template< class TInputMesh, class TOutputMesh, class TDisplacementField >
00042 class ITK_EXPORT WarpMeshFilter:
00043   public MeshToMeshFilter< TInputMesh, TOutputMesh >
00044 {
00045 public:
00047   typedef WarpMeshFilter                              Self;
00048   typedef MeshToMeshFilter< TInputMesh, TOutputMesh > Superclass;
00049   typedef SmartPointer< Self >                        Pointer;
00050   typedef SmartPointer< const Self >                  ConstPointer;
00051 
00052   typedef TInputMesh                      InputMeshType;
00053   typedef typename InputMeshType::Pointer InputMeshPointer;
00054 
00055   typedef TOutputMesh                      OutputMeshType;
00056   typedef typename OutputMeshType::Pointer OutputMeshPointer;
00057 
00059   typedef typename TInputMesh::CoordRepType CoordRepType;
00060 
00062   typedef TDisplacementField                           DisplacementFieldType;
00063   typedef typename DisplacementFieldType::ConstPointer DisplacementFieldPointer;
00064   typedef typename DisplacementFieldType::PixelType    DisplacementType;
00065 
00067   itkNewMacro(Self);
00068 
00070   itkTypeMacro(WarpMeshFilter, MeshToMeshFilter);
00071 
00073   void SetDisplacementField(const DisplacementFieldType *field);
00074 
00076   const DisplacementFieldType * GetDisplacementField(void) const;
00077 
00078 protected:
00079   WarpMeshFilter();
00080   ~WarpMeshFilter() {}
00081   void PrintSelf(std::ostream & os, Indent indent) const;
00082 
00084   virtual void GenerateData(void);
00085 
00086 private:
00087   WarpMeshFilter(const WarpMeshFilter &); //purposely not implemented
00088   void operator=(const WarpMeshFilter &); //purposely not implemented
00089 };
00090 } // end namespace itk
00091 
00092 #ifndef ITK_MANUAL_INSTANTIATION
00093 #include "itkWarpMeshFilter.hxx"
00094 #endif
00095 
00096 #endif
00097