00001 /*========================================================================= 00002 00003 Program: Insight Segmentation & Registration Toolkit 00004 Module: $RCSfile: itkQuadEdgeMeshDiscreteCurvatureTensorEstimator.h,v $ 00005 Language: C++ 00006 Date: $Date: 2008-10-01 21:37:10 $ 00007 Version: $Revision: 1.2 $ 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 00018 #ifndef __itkQuadEdgeMeshDiscreteCurvatureTensorEstimator_h 00019 #define __itkQuadEdgeMeshDiscreteCurvatureTensorEstimator_h 00020 00021 namespace itk 00022 { 00029 template< class TInputMesh, class TOutputMesh > 00030 class QuadEdgeMeshDiscreteCurvatureTensorEstimator : 00031 public QuadEdgeMeshToQuadEdgeMeshFilter< TInputMesh, TOutputMesh > 00032 { 00033 public: 00034 typedef QuadEdgeMeshDiscreteCurvatureTensorEstimator Self; 00035 typedef SmartPointer< Self > Pointer; 00036 typedef SmartPointer< const Self > ConstPointer; 00037 typedef QuadEdgeMeshToQuadEdgeMeshFilter Superclass; 00038 00040 itkTypeMacro( QuadEdgeMeshDiscreteCurvatureTensorEstimator, QuadEdgeMeshToQuadEdgeMeshFilter ); 00041 00043 itkNewMacro( Self ); 00044 00045 protected: 00046 QuadEdgeMeshDiscreteCurvatureTensorEstimator() {} 00047 ~QuadEdgeMeshDiscreteCurvatureTensorEstimator() {} 00048 00050 virtual void GenerateData() 00051 { 00052 00053 } 00054 00055 private: 00056 QuadEdgeMeshDiscreteCurvatureTensorEstimator( const Self& ); // purposely not implemented 00057 void operator = ( const Self& ); // purposely not implemented 00058 00059 }; 00060 00061 } 00062 00063 #endif 00064