ITK
4.3.0
Insight Segmentation and Registration Toolkit
Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
ITK
Modules
Core
Common
include
itkImageRegionIterator.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 __itkImageRegionIterator_h
19
#define __itkImageRegionIterator_h
20
21
#include "
itkImageRegionConstIterator.h
"
22
23
namespace
itk
24
{
77
template
<
typename
TImage >
78
class
ITK_EXPORT
ImageRegionIterator
:
public
ImageRegionConstIterator
< TImage >
79
{
80
public
:
82
typedef
ImageRegionIterator
Self
;
83
typedef
ImageRegionConstIterator< TImage >
Superclass
;
84
86
typedef
typename
Superclass::IndexType
IndexType
;
87
typedef
typename
Superclass::SizeType
SizeType
;
88
typedef
typename
Superclass::OffsetType
OffsetType
;
89
typedef
typename
Superclass::RegionType
RegionType
;
90
typedef
typename
Superclass::ImageType
ImageType
;
91
typedef
typename
Superclass::PixelContainer
PixelContainer
;
92
typedef
typename
Superclass::PixelContainerPointer
PixelContainerPointer
;
93
typedef
typename
Superclass::InternalPixelType
InternalPixelType
;
94
typedef
typename
Superclass::PixelType
PixelType
;
95
typedef
typename
Superclass::AccessorType
AccessorType
;
96
98
ImageRegionIterator
();
99
102
ImageRegionIterator
(
ImageType
*ptr,
const
RegionType
& region);
103
110
ImageRegionIterator
(
const
ImageIterator< TImage >
& it);
111
113
void
Set(
const
PixelType
& value)
const
114
{
115
this->m_PixelAccessorFunctor.Set(*( const_cast< InternalPixelType * >(
116
this->m_Buffer + this->m_Offset ) ), value);
117
}
118
122
PixelType
& Value(
void
)
123
{
return
*(
const_cast<
InternalPixelType
*
>
( this->m_Buffer + this->m_Offset ) ); }
124
128
itkLegacyMacro(Self Begin(
void
)
const
);
129
133
itkLegacyMacro(Self End(
void
)
const
);
134
135
protected
:
138
ImageRegionIterator
(
const
ImageRegionConstIterator< TImage >
& it);
139
Self & operator=(
const
ImageRegionConstIterator< TImage >
& it);
140
};
141
}
// end namespace itk
143
144
#ifndef ITK_MANUAL_INSTANTIATION
145
#include "itkImageRegionIterator.hxx"
146
#endif
147
148
#endif
149
Generated on Sun Dec 9 2012 01:08:36 for ITK by
1.8.2