00001 /*========================================================================= 00002 00003 Program: Insight Segmentation & Registration Toolkit 00004 Module: $RCSfile: itkImageIteratorWithIndex.h,v $ 00005 Language: C++ 00006 Date: $Date: 2004/12/11 20:29:18 $ 00007 Version: $Revision: 1.33 $ 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 __itkImageIteratorWithIndex_h 00018 #define __itkImageIteratorWithIndex_h 00019 00020 #include "itkImageConstIteratorWithIndex.h" 00021 00022 namespace itk 00023 { 00024 00066 template<typename TImage> 00067 class ITK_EXPORT ImageIteratorWithIndex : public ImageConstIteratorWithIndex<TImage> 00068 { 00069 public: 00071 typedef ImageIteratorWithIndex Self; 00072 00077 itkStaticConstMacro(ImageIteratorDimension, unsigned int, 00078 TImage::ImageDimension); 00079 00081 typedef ImageConstIteratorWithIndex<TImage> Superclass; 00082 00084 typedef typename Superclass::IndexType IndexType; 00085 typedef typename Superclass::IndexValueType IndexValueType; 00086 typedef typename Superclass::SizeType SizeType; 00087 typedef typename Superclass::SizeValueType SizeValueType; 00088 typedef typename Superclass::OffsetType OffsetType; 00089 typedef typename Superclass::OffsetValueType OffsetValueType; 00090 typedef typename Superclass::RegionType RegionType; 00091 typedef typename Superclass::ImageType ImageType; 00092 typedef typename Superclass::PixelContainer PixelContainer; 00093 typedef typename Superclass::PixelContainerPointer PixelContainerPointer; 00094 typedef typename Superclass::InternalPixelType InternalPixelType; 00095 typedef typename Superclass::PixelType PixelType; 00096 typedef typename Superclass::AccessorType AccessorType; 00097 00098 00101 ImageIteratorWithIndex(); 00102 00104 ~ImageIteratorWithIndex() {}; 00105 00106 00109 ImageIteratorWithIndex(const Self& it); 00110 00113 ImageIteratorWithIndex(TImage *ptr, const RegionType& region); 00114 00117 Self &operator=(const Self& it); 00118 00120 void Set( const PixelType & value) const 00121 { this->m_PixelAccessor.Set(*(const_cast<InternalPixelType *>(this->m_Position)),value); } 00122 00126 PixelType & Value(void) 00127 { return *(const_cast<InternalPixelType *>(this->m_Position)); } 00128 00129 protected: 00130 00132 ImageIteratorWithIndex(const ImageConstIteratorWithIndex<TImage> & it); 00133 Self &operator=(const ImageConstIteratorWithIndex<TImage> & it); 00134 }; 00135 00136 } // end namespace itk 00137 00138 #ifndef ITK_MANUAL_INSTANTIATION 00139 #include "itkImageIteratorWithIndex.txx" 00140 #endif 00141 00142 #endif