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 __itkDiscreteCurvatureTensorQuadEdgeMeshFilter_h 00019 #define __itkDiscreteCurvatureTensorQuadEdgeMeshFilter_h 00020 00021 #include "itkQuadEdgeMeshToQuadEdgeMeshFilter.h" 00022 00023 namespace itk 00024 { 00032 template< class TInputMesh, class TOutputMesh=TInputMesh > 00033 class ITK_EXPORT DiscreteCurvatureTensorQuadEdgeMeshFilter: 00034 public QuadEdgeMeshToQuadEdgeMeshFilter< TInputMesh, TOutputMesh > 00035 { 00036 public: 00037 typedef DiscreteCurvatureTensorQuadEdgeMeshFilter Self; 00038 typedef SmartPointer< Self > Pointer; 00039 typedef SmartPointer< const Self > ConstPointer; 00040 typedef QuadEdgeMeshToQuadEdgeMeshFilter< TInputMesh, TOutputMesh > 00041 Superclass; 00042 00044 itkTypeMacro(DiscreteCurvatureTensorQuadEdgeMeshFilter, QuadEdgeMeshToQuadEdgeMeshFilter); 00045 00047 itkNewMacro(Self); 00048 00049 #ifdef ITK_USE_CONCEPT_CHECKING 00050 00051 // itkConceptMacro( OutputIsFloatingPointCheck, 00052 // ( Concept::IsFloatingPoint< OutputCurvatureType > ) ); 00053 00055 #endif 00056 00057 protected: 00058 DiscreteCurvatureTensorQuadEdgeMeshFilter() {} 00059 ~DiscreteCurvatureTensorQuadEdgeMeshFilter() {} 00060 00062 virtual void GenerateData() 00063 {} 00064 00065 private: 00066 DiscreteCurvatureTensorQuadEdgeMeshFilter(const Self &); // purposely not 00067 // implemented 00068 void operator=(const Self &); // purposely not 00069 // implemented 00070 }; 00071 } 00072 00073 #endif 00074