ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkNeighborhoodIterator.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 itkNeighborhoodIterator_h
19#define itkNeighborhoodIterator_h
20
21#include <vector>
22#include <cstring>
23#include <iostream>
25
26namespace itk
27{
211template <typename TImage, typename TBoundaryCondition = ZeroFluxNeumannBoundaryCondition<TImage>>
212class ITK_TEMPLATE_EXPORT NeighborhoodIterator : public ConstNeighborhoodIterator<TImage, TBoundaryCondition>
213{
214public:
218
220 using typename Superclass::InternalPixelType;
221 using typename Superclass::PixelType;
222 using typename Superclass::SizeType;
223 using typename Superclass::ImageType;
224 using typename Superclass::RegionType;
225 using typename Superclass::IndexType;
226 using typename Superclass::OffsetType;
227 using typename Superclass::RadiusType;
228 using typename Superclass::NeighborhoodType;
229 using typename Superclass::Iterator;
230 using typename Superclass::ConstIterator;
232
237
242
244 Self &
245 operator=(const Self & orig)
246 {
248 return *this;
249 }
250
253 NeighborhoodIterator(const SizeType & radius, ImageType * ptr, const RegionType & region)
254 : Superclass(radius, ptr, region)
255 {}
256
258 InternalPixelType *
260 {
261 return (this->operator[]((this->Size()) >> 1));
262 }
263
265 void
267 {
268 this->m_NeighborhoodAccessorFunctor.Set(this->operator[]((this->Size()) >> 1), p);
269 }
270
274 void
276
279 void
280 SetPixel(const unsigned int n, const PixelType & v, bool & status);
281
283 void
284 SetPixel(const unsigned int n, const PixelType & v);
285
286 // { *(this->operator[](i)) = v; }
287
289 void
290 SetPixel(const OffsetType o, const PixelType & v)
291 {
292 this->SetPixel(this->GetNeighborhoodIndex(o), v);
293 }
294 // { *(this->operator[](o)) = v; }
295
299 void
300 SetNext(const unsigned int axis, const unsigned int i, const PixelType & v)
301 {
302 this->SetPixel(this->GetCenterNeighborhoodIndex() + (i * this->GetStride(axis)), v);
303 }
304
308 void
309 SetNext(const unsigned int axis, const PixelType & v)
310 {
311 this->SetPixel(this->GetCenterNeighborhoodIndex() + this->GetStride(axis), v);
312 }
313
317 void
318 SetPrevious(const unsigned int axis, const unsigned int i, const PixelType & v)
319 {
320 this->SetPixel(this->GetCenterNeighborhoodIndex() - (i * this->GetStride(axis)), v);
321 }
322
326 void
327 SetPrevious(const unsigned int axis, const PixelType & v)
328 {
329 this->SetPixel(this->GetCenterNeighborhoodIndex() - this->GetStride(axis), v);
330 }
331};
332} // namespace itk
333
334#ifndef ITK_MANUAL_INSTANTIATION
335# include "itkNeighborhoodIterator.hxx"
336#endif
337
338#endif
typename AllocatorType::const_iterator ConstIterator
ImageBoundaryCondition< ImageType, OutputImageType > * ImageBoundaryConditionPointerType
void SetPixel(const unsigned int n, const PixelType &v, bool &status)
void SetNext(const unsigned int axis, const unsigned int i, const PixelType &v)
void SetNeighborhood(const NeighborhoodType &)
NeighborhoodIterator(const NeighborhoodIterator &n)
void SetCenterPixel(const PixelType &p)
void SetNext(const unsigned int axis, const PixelType &v)
void SetPrevious(const unsigned int axis, const PixelType &v)
void SetPixel(const unsigned int n, const PixelType &v, bool &status)
void SetPrevious(const unsigned int axis, const unsigned int i, const PixelType &v)
InternalPixelType * GetCenterPointer()
void SetPixel(const unsigned int n, const PixelType &v)
NeighborhoodIterator(const SizeType &radius, ImageType *ptr, const RegionType &region)
Self & operator=(const Self &orig)
void SetPixel(const OffsetType o, const PixelType &v)
ConstNeighborhoodIterator< TImage, TBoundaryCondition > Superclass
virtual NeighborIndexType GetNeighborhoodIndex(const OffsetType &) const
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Represent a n-dimensional size (bounds) of a n-dimensional image.
Definition itkSize.h:70