ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkRectangularImageNeighborhoodShape.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
19#ifndef itkRectangularImageNeighborhoodShape_h
20#define itkRectangularImageNeighborhoodShape_h
21
22#include <algorithm> // For transform.
23#include <cassert>
24
25#include "itkOffset.h"
26#include "itkSize.h"
27
28namespace itk
29{
30
52template <unsigned int VImageDimension>
54{
55public:
56 static constexpr unsigned int ImageDimension = VImageDimension;
57
63
64
66 constexpr size_t
67 GetNumberOfOffsets() const noexcept
68 {
69 return m_NumberOfOffsets;
70 }
71
72
74 void
75 FillOffsets(Offset<ImageDimension> * const offsets) const noexcept
76 {
77 if (m_NumberOfOffsets > 0)
78 {
79 assert(offsets != nullptr);
81
82 std::transform(m_Radius.begin(), m_Radius.end(), offset.begin(), [](const SizeValueType radiusValue) {
83 return -static_cast<OffsetValueType>(radiusValue);
84 });
85
86 for (size_t i = 0; i < m_NumberOfOffsets; ++i)
87 {
88 offsets[i] = offset;
89
90 for (unsigned int dimensionIndex = 0; dimensionIndex < ImageDimension; ++dimensionIndex)
91 {
92 OffsetValueType & offsetValue = offset[dimensionIndex];
93
94 ++offsetValue;
95
96 if (offsetValue <= static_cast<OffsetValueType>(m_Radius[dimensionIndex]))
97 {
98 break;
99 }
100 offsetValue = -static_cast<OffsetValueType>(m_Radius[dimensionIndex]);
101 }
102 }
103 }
104 }
105
106private:
107 // The radius of the neighborhood along each direction.
109
110 // The number of offsets needed to represent this shape.
112
113
114 // Private helper function to calculate the number of Offsets by a recursive
115 // function call. Recursion is necessary for C++11 constexpr.
116 constexpr size_t
117 CalculateNumberOfOffsets(const unsigned int dimension) const noexcept
118 {
119 return (dimension == 0)
120 ? 1
121 : (2 * m_Radius.m_InternalArray[dimension - 1] + 1) * CalculateNumberOfOffsets(dimension - 1);
122 }
123};
124
125} // namespace itk
126
127#endif
constexpr RectangularImageNeighborhoodShape(const Size< ImageDimension > &radius) noexcept
constexpr vcl_size_t GetNumberOfOffsets() const noexcept
constexpr vcl_size_t CalculateNumberOfOffsets(const unsigned int dimension) const noexcept
void FillOffsets(Offset< ImageDimension > *const offsets) const noexcept
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned long SizeValueType
Definition itkIntTypes.h:86
long OffsetValueType
Definition itkIntTypes.h:97
Represent a n-dimensional offset between two n-dimensional indexes of n-dimensional image.
Definition itkOffset.h:67
constexpr iterator begin()
Definition itkOffset.h:308
Represent a n-dimensional size (bounds) of a n-dimensional image.
Definition itkSize.h:70