ITK  6.0.0
Insight Toolkit
itkFrequencyShiftedFFTLayoutImageRegionIteratorWithIndex.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 itkFrequencyShiftedFFTLayoutImageRegionIteratorWithIndex_h
19#define itkFrequencyShiftedFFTLayoutImageRegionIteratorWithIndex_h
20
23
24namespace itk
25{
63template <typename TImage>
66{
67public:
71
73 using typename Superclass::IndexType;
74 using typename Superclass::SizeType;
75 using typename Superclass::OffsetType;
76 using typename Superclass::RegionType;
77 using typename Superclass::ImageType;
78 using typename Superclass::PixelContainer;
80 using typename Superclass::InternalPixelType;
81 using typename Superclass::PixelType;
82 using typename Superclass::AccessorType;
83
84 using FrequencyType = typename ImageType::SpacingType;
85 using FrequencyValueType = typename ImageType::SpacingValueType;
89 {}
90
95 {}
96
105 {}
106
108 void
109 Set(const PixelType & value) const
110 {
111 this->m_PixelAccessorFunctor.Set(*(const_cast<InternalPixelType *>(this->m_Position)), value);
112 }
113
117 PixelType &
119 {
120 return *(const_cast<InternalPixelType *>(this->m_Position));
121 }
122
123protected:
129 {}
130
131 Self &
133 {
135 return *this;
136 }
137};
138} // end namespace itk
139#endif
Pixel-wise addition of two images.
A multi-dimensional iterator templated over image type that walks pixels within a region and is speci...
Self & operator=(const FrequencyShiftedFFTLayoutImageRegionConstIteratorWithIndex< TImage > &it)
FrequencyShiftedFFTLayoutImageRegionIteratorWithIndex(const FrequencyShiftedFFTLayoutImageRegionConstIteratorWithIndex< TImage > &it)
A base class for multi-dimensional iterators templated over image type that are designed to efficient...
Self & operator=(const Self &it)
typename TImage::InternalPixelType InternalPixelType
A base class for multi-dimensional iterators templated over image type that are designed to efficient...
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....