ITK
4.1.0
Insight Segmentation and Registration Toolkit
|
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 __itkParametricSpaceToImageSpaceMeshFilter_h 00019 #define __itkParametricSpaceToImageSpaceMeshFilter_h 00020 00021 #include "itkMeshToMeshFilter.h" 00022 00023 namespace itk 00024 { 00047 template< class TInputMesh, class TOutputMesh > 00048 class ITK_EXPORT ParametricSpaceToImageSpaceMeshFilter: 00049 public MeshToMeshFilter< TInputMesh, TOutputMesh > 00050 { 00051 public: 00053 typedef ParametricSpaceToImageSpaceMeshFilter Self; 00054 typedef MeshToMeshFilter< TInputMesh, TOutputMesh > Superclass; 00055 typedef SmartPointer< Self > Pointer; 00056 typedef SmartPointer< const Self > ConstPointer; 00057 00059 typedef typename TInputMesh::CoordRepType CoordRepType; 00060 00061 typedef TInputMesh InputMeshType; 00062 typedef TOutputMesh OutputMeshType; 00063 typedef typename InputMeshType::Pointer InputMeshPointer; 00064 typedef typename OutputMeshType::Pointer OutputMeshPointer; 00065 00067 itkNewMacro(Self); 00068 00070 itkTypeMacro(ParametricSpaceToImageSpaceMeshFilter, MeshToMeshFilter); 00071 protected: 00072 ParametricSpaceToImageSpaceMeshFilter(); 00073 ~ParametricSpaceToImageSpaceMeshFilter() {} 00074 void PrintSelf(std::ostream & os, Indent indent) const; 00076 00078 virtual void GenerateData(void); 00079 00081 virtual void GenerateOutputInformation(void); 00082 00083 private: 00084 //purposely not implemented 00085 ParametricSpaceToImageSpaceMeshFilter(const ParametricSpaceToImageSpaceMeshFilter &); 00086 void operator=(const ParametricSpaceToImageSpaceMeshFilter &); 00087 }; 00088 } // end namespace itk 00089 00090 #ifndef ITK_MANUAL_INSTANTIATION 00091 #include "itkParametricSpaceToImageSpaceMeshFilter.hxx" 00092 #endif 00093 00094 #endif 00095