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

itkInteriorExteriorSpatialFunction.h

Go to the documentation of this file.
00001 /*========================================================================= 00002 00003 Program: Insight Segmentation & Registration Toolkit 00004 Module: $RCSfile: itkInteriorExteriorSpatialFunction.h,v $ 00005 Language: C++ 00006 Date: $Date: 2003/09/10 14:29:13 $ 00007 Version: $Revision: 1.16 $ 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 __itkInteriorExteriorSpatialFunction_h 00018 #define __itkInteriorExteriorSpatialFunction_h 00019 00020 #include "itkSpatialFunction.h" 00021 00022 namespace itk 00023 { 00024 00047 template <unsigned int VDimension=3,typename TInput=Point<double,VDimension> > 00048 class ITK_EXPORT InteriorExteriorSpatialFunction : public 00049 SpatialFunction<bool, VDimension, TInput > 00050 { 00051 public: 00053 typedef InteriorExteriorSpatialFunction Self; 00054 typedef SpatialFunction<bool, VDimension,TInput> Superclass; 00055 typedef SmartPointer<Self> Pointer; 00056 typedef SmartPointer<const Self> ConstPointer; 00057 00059 itkTypeMacro(InteriorExteriorSpatialFunction, SpatialFunction); 00060 00062 typedef typename Superclass::InputType InputType; 00063 00065 typedef typename Superclass::OutputType OutputType; 00066 00071 virtual OutputType Evaluate( const InputType& input ) const = 0; 00072 00073 protected: 00074 InteriorExteriorSpatialFunction(); 00075 virtual ~InteriorExteriorSpatialFunction(); 00076 void PrintSelf(std::ostream& os, Indent indent) const; 00077 00078 private: 00079 InteriorExteriorSpatialFunction(const Self&); //purposely not implemented 00080 void operator=(const Self&); //purposely not implemented 00081 00082 }; 00083 00084 } // end namespace itk 00085 00086 #ifndef ITK_MANUAL_INSTANTIATION 00087 #include "itkInteriorExteriorSpatialFunction.txx" 00088 #endif 00089 00090 #endif

Generated at Sun Apr 1 02:36:04 2007 for ITK by doxygen 1.3.8 written by Dimitri van Heesch, © 1997-2000