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

itkBinaryBallStructuringElement.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkBinaryBallStructuringElement.h,v $
00005   Language:  C++
00006   Date:      $Date: 2007/02/08 18:55:54 $
00007   Version:   $Revision: 1.8 $
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 __itkBinaryBallStructuringElement_h
00018 #define __itkBinaryBallStructuringElement_h
00019 
00020 #include "itkNeighborhood.h"
00021 
00022 namespace itk {
00023   
00051 template<class TPixel, unsigned int VDimension = 2,
00052          class TAllocator = NeighborhoodAllocator<TPixel> >
00053 class ITK_EXPORT BinaryBallStructuringElement
00054   : public Neighborhood<TPixel, VDimension, TAllocator>
00055 {
00056 public:
00058   typedef BinaryBallStructuringElement                 Self;
00059   typedef Neighborhood<TPixel, VDimension, TAllocator> Superclass;
00060 
00062   typedef TAllocator AllocatorType;
00063 
00065   itkStaticConstMacro(NeighborhoodDimension, unsigned int, VDimension);
00066 
00068   typedef TPixel PixelType;
00069 
00073   typedef typename AllocatorType::iterator       Iterator;
00074   typedef typename AllocatorType::const_iterator ConstIterator;
00075 
00077   typedef typename Superclass::SizeType      SizeType;
00078   typedef typename Superclass::SizeValueType SizeValueType;
00079 
00081   typedef typename Superclass::RadiusType RadiusType;
00082 
00084   typedef SliceIterator<TPixel, Self> SliceIteratorType;
00085 
00087   BinaryBallStructuringElement() {}
00088 
00090   virtual ~BinaryBallStructuringElement() {}
00091 
00093   BinaryBallStructuringElement(const Self& other)
00094     : Neighborhood<TPixel, VDimension, TAllocator>(other)
00095     {
00096     }
00097 
00099   Self &operator=(const Self& other)
00100     {
00101     Superclass::operator=(other);
00102     return *this;
00103     }
00105 
00107   void CreateStructuringElement();   
00108 
00109 protected:
00110   
00111 private:
00112 
00113 };
00114 
00115 } // namespace itk
00116 
00117 // Define instantiation macro for this template.
00118 #define ITK_TEMPLATE_BinaryBallStructuringElement(_, EXPORT, x, y) namespace itk { \
00119   _(2(class EXPORT BinaryBallStructuringElement< ITK_TEMPLATE_2 x >)) \
00120   namespace Templates { typedef BinaryBallStructuringElement< ITK_TEMPLATE_2 x > \
00121                                                   BinaryBallStructuringElement##y; } \
00122   }
00123 
00124 #if ITK_TEMPLATE_EXPLICIT
00125 # include "Templates/itkBinaryBallStructuringElement+-.h"
00126 #endif
00127 
00128 #if ITK_TEMPLATE_TXX
00129 # include "itkBinaryBallStructuringElement.txx"
00130 #endif
00131 
00132 #endif
00133 

Generated at Wed Nov 5 20:22:20 2008 for ITK by doxygen 1.5.1 written by Dimitri van Heesch, © 1997-2000