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

itkNeighborhoodOperator.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkNeighborhoodOperator.h,v $
00005   Language:  C++
00006   Date:      $Date: 2002/07/08 15:17:09 $
00007   Version:   $Revision: 1.21 $
00008 
00009   Copyright (c) 2002 Insight 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 __itkNeighborhoodOperator_h
00018 #define __itkNeighborhoodOperator_h
00019 
00020 #include "itkNeighborhood.h"
00021 #include "itkExceptionObject.h"
00022 #include "itkNumericTraits.h"
00023 #include <vector>
00024 
00025 namespace itk {
00062 template< class TPixel, unsigned int VDimension,
00063   class TAllocator = NeighborhoodAllocator<TPixel> >
00064 class ITK_EXPORT NeighborhoodOperator
00065   : public Neighborhood<TPixel, VDimension, TAllocator>
00066 {
00067 public:
00069   typedef NeighborhoodOperator Self;
00070   typedef Neighborhood<TPixel, VDimension, TAllocator> Superclass;
00071     
00073   typedef typename Superclass::SizeType SizeType;
00074 
00076   typedef TPixel PixelType;
00077 
00079   typedef SliceIterator<TPixel, Self> SliceIteratorType;
00080  
00082   NeighborhoodOperator()
00083     {  m_Direction = 0;  }
00084 
00086   NeighborhoodOperator(const Self &orig)
00087     : Neighborhood<TPixel, VDimension, TAllocator>(orig) 
00088     {   m_Direction = orig.m_Direction;   }
00089   
00091   Self &operator=( const Self &orig )
00092     {
00093       Superclass::operator=(orig);
00094       m_Direction = orig.m_Direction;
00095       return *this;
00096     }
00097   
00099   void SetDirection(const unsigned long &direction)
00100     {  m_Direction = direction;   }
00101 
00103   unsigned long GetDirection() const
00104     {  return m_Direction;  }
00105   
00110   virtual void CreateDirectional();
00111 
00116   virtual void CreateToRadius(const SizeType &);
00117 
00122   virtual void CreateToRadius(const unsigned long);
00123 
00126   virtual void FlipAxes();
00127   
00129   virtual void PrintSelf(std::ostream& os, Indent i) const
00130     {
00131       os << i << "NeighborhoodOperator { this=" << this
00132          << " Direction = " << m_Direction << " }" << std::endl;
00133       Superclass::PrintSelf( os, i.GetNextIndent() );
00134     }
00135 
00136 protected:
00139   typedef std::vector<double>  CoefficientVector;
00140 
00143   virtual CoefficientVector GenerateCoefficients() = 0;
00144 
00147   virtual void Fill(const CoefficientVector &) = 0;
00148   
00154   virtual void FillCenteredDirectional(const CoefficientVector &);
00155 
00157   void InitializeToZero()
00158   {
00159     for (unsigned int i = 0; i< this->Size(); ++i)
00160       { this->operator[](i) = NumericTraits<PixelType>::Zero; }
00161   }
00162   
00163 private:
00165   unsigned long  m_Direction;
00166 };
00167 
00168 } // namespace itk
00169 
00170 #ifndef ITK_MANUAL_INSTANTIATION
00171 #include "itkNeighborhoodOperator.txx"
00172 #endif
00173 
00174 #endif
00175 

Generated at Fri May 21 01:15:08 2004 for ITK by doxygen 1.2.15 written by Dimitri van Heesch, © 1997-2000