Loading [MathJax]/extensions/tex2jax.js
ITK 6.0.0
Insight Toolkit
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Loading...
Searching...
No Matches
itkPathIterator.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
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 * https://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 itkPathIterator_h
19#define itkPathIterator_h
20
22
23namespace itk
24{
67template <typename TImage, typename TPath>
68class ITK_TEMPLATE_EXPORT PathIterator : public PathConstIterator<TImage, TPath>
69{
70public:
73
78 static constexpr unsigned int ImageIteratorDimension = TImage::ImageDimension;
79
82
84 using typename Superclass::IndexType;
85 using typename Superclass::OffsetType;
86 using typename Superclass::SizeType;
87 using typename Superclass::ImageType;
88 using typename Superclass::PixelContainer;
90 using typename Superclass::InternalPixelType;
91 using typename Superclass::PixelType;
92 using typename Superclass::AccessorType;
93 using typename Superclass::PathType;
94 using typename Superclass::PathInputType;
95 using typename Superclass::PathOutputType;
96
98 itkOverrideGetNameOfClassMacro(PathIterator);
99
101 void
102 Set(const PixelType & value)
103 {
104 // Normally, this would just be the following:
105 // m_Image->SetPixel(m_CurrentImageIndex,value);
106 // However, we don't want a warning about m_Image being a ConstPointer
107 // in the Superclass.
108 const_cast<ImageType *>(this->m_Image.GetPointer())->SetPixel(this->m_CurrentImageIndex, value);
109 }
110
114 PixelType &
116 {
117 return this->GetImage()->GetPixel(this->m_ImageIndex);
118 }
119
122 Self &
123 operator=(const Self & it);
124
126 PathIterator(ImageType * imagePtr, const PathType * pathPtr);
127
129 ~PathIterator() override = default;
130};
131} // end namespace itk
132
133#ifndef ITK_MANUAL_INSTANTIATION
134# include "itkPathIterator.hxx"
135#endif
136
137#endif
typename TImage::PixelContainer PixelContainer
typename TImage::SizeType SizeType
typename TImage::InternalPixelType InternalPixelType
typename PixelContainer::Pointer PixelContainerPointer
typename PathType::InputType PathInputType
typename TImage::PixelType PixelType
ImageType::ConstWeakPointer m_Image
typename TImage::IndexType IndexType
typename PathType::OutputType PathOutputType
typename TImage::OffsetType OffsetType
typename TImage::AccessorType AccessorType
PathConstIterator(const ImageType *imagePtr, const PathType *pathPtr)
void Set(const PixelType &value)
Self & operator=(const Self &it)
static constexpr unsigned int ImageIteratorDimension
~PathIterator() override=default
PathIterator(ImageType *imagePtr, const PathType *pathPtr)
PixelType & Value()
typename TImage::PixelType PixelType
PathConstIterator< TImage, TPath > Superclass
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....