ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkVectorImageNeighborhoodAccessorFunctor.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 itkVectorImageNeighborhoodAccessorFunctor_h
19#define itkVectorImageNeighborhoodAccessorFunctor_h
20
23#include "itkImageBase.h"
24
25namespace itk
26{
40template <typename TImage>
42{
43public:
44 using ImageType = TImage;
45 using PixelType = typename ImageType::PixelType;
46 using InternalPixelType = typename ImageType::InternalPixelType;
47 using VectorLengthType = unsigned int;
48 using OffsetType = typename ImageType::OffsetType;
49
51
52 template <typename TOutput = ImageType>
54
60
74 inline void
76 {
77 this->m_Begin = const_cast<InternalPixelType *>(begin);
78 }
79
87 inline PixelType
88 Get(const InternalPixelType * pixelPointer) const
89 {
90 return PixelType(pixelPointer + (pixelPointer - m_Begin) * m_OffsetMultiplier, m_VectorLength);
91 }
92
94 inline void
95 Set(InternalPixelType * const pixelPointer, const PixelType & p) const
96 {
97 InternalPixelType * const truePixelPointer = pixelPointer + (pixelPointer - m_Begin) * m_OffsetMultiplier;
98
99 for (VectorLengthType i = 0; i < m_VectorLength; ++i)
100 {
101 truePixelPointer[i] = p[i];
102 }
103 }
104
105
106 template <typename TOutput>
108 BoundaryCondition(const OffsetType & point_index,
109 const OffsetType & boundary_offset,
110 const NeighborhoodType * data,
111 const ImageBoundaryConditionType<TOutput> * boundaryCondition) const
112 {
113 return boundaryCondition->operator()(point_index, boundary_offset, data, *this);
114 }
115
118 void
120 {
121 m_VectorLength = length;
122 m_OffsetMultiplier = length - 1;
123 }
124
129 {
130 return m_VectorLength;
131 }
132
133private:
135 VectorLengthType m_OffsetMultiplier{ 0 }; // m_OffsetMultiplier = m_VectorLength-1
136 // (precomputed for speedup).
137 InternalPixelType * m_Begin{ nullptr }; // Begin of the buffer.
138};
139} // end namespace itk
140#endif
A virtual base object that defines an interface to a class of boundary condition objects for use by n...
A light-weight container object for storing an N-dimensional neighborhood of values.
Neighborhood< InternalPixelType *, Self::ImageDimension > NeighborhoodType
void Set(InternalPixelType *const pixelPointer, const PixelType &p) const
ImageBoundaryConditionType< TOutput >::OutputPixelType BoundaryCondition(const OffsetType &point_index, const OffsetType &boundary_offset, const NeighborhoodType *data, const ImageBoundaryConditionType< TOutput > *boundaryCondition) const
PixelType Get(const InternalPixelType *pixelPointer) const
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....