ITK  4.5.0
Insight Segmentation and Registration Toolkit
itkImageSliceConstIteratorWithIndex.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0.txt
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  *=========================================================================*/
18 #ifndef __itkImageSliceConstIteratorWithIndex_h
19 #define __itkImageSliceConstIteratorWithIndex_h
20 
22 
23 namespace itk
24 {
112 template< typename TImage >
114 {
115 public:
119 
122  typedef typename Superclass::SizeType SizeType;
131 
134 
138  const RegionType & region):
139  ImageConstIteratorWithIndex< TImage >(ptr, region)
140  {
141  m_Direction_A = 0;
142  m_Direction_B = 1;
143  }
145 
154 
157  void NextLine(void);
158 
160  void GoToBeginOfSlice(void);
161 
164  void NextSlice(void);
165 
168  void PreviousLine(void);
169 
172  void PreviousSlice(void);
173 
175  bool IsAtEndOfLine(void);
176 
178  bool IsAtEndOfSlice(void);
179 
181  bool IsAtReverseEndOfLine(void);
182 
184  bool IsAtReverseEndOfSlice(void);
185 
187  void SetFirstDirection(unsigned int direction);
188 
190  void SetSecondDirection(unsigned int direction);
191 
195  inline Self & operator++();
196 
200  inline Self & operator--();
201 
202 private:
205  unsigned int m_Direction_A;
206  unsigned int m_Direction_B;
207 };
208 } // end namespace itk
209 
210 #ifndef ITK_MANUAL_INSTANTIATION
211 #include "itkImageSliceConstIteratorWithIndex.hxx"
212 #endif
213 
214 #endif
ImageSliceConstIteratorWithIndex(const ImageConstIteratorWithIndex< TImage > &it)
void SetFirstDirection(unsigned int direction)
ImageSliceConstIteratorWithIndex(const ImageType *ptr, const RegionType &region)
void SetSecondDirection(unsigned int direction)
A base class for multi-dimensional iterators templated over image type that are designed to efficient...
Self & operator=(const Self &it)
Multi-dimensional image iterator which only walks a region.
ImageConstIteratorWithIndex< TImage > Superclass