ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkNeighborhoodOperator.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 itkNeighborhoodOperator_h
19#define itkNeighborhoodOperator_h
20
21#include "itkNeighborhood.h"
22#include "itkNumericTraits.h"
23#include <vector>
24
25namespace itk
26{
71template <typename TPixel, unsigned int VDimension, typename TAllocator = NeighborhoodAllocator<TPixel>>
72class ITK_TEMPLATE_EXPORT NeighborhoodOperator : public Neighborhood<TPixel, VDimension, TAllocator>
73{
74public:
78
79 itkOverrideGetNameOfClassMacro(NeighborhoodOperator);
80
82 using typename Superclass::SizeType;
83
85 using PixelType = TPixel;
86
89
91
93 void
94 SetDirection(const unsigned int direction)
95 {
96 if (direction >= VDimension)
97 {
98 itkExceptionMacro(<< " Can not set direction " << direction << " greater than dimensionality of neighborhood "
99 << VDimension);
100 }
101 m_Direction = direction;
102 }
103
105 unsigned int
107 {
108 return m_Direction;
109 }
110
115 virtual void
117
122 virtual void
129 virtual void
131
134 virtual void
136
137 void
138 PrintSelf(std::ostream & os, Indent indent) const override
139 {
140 Superclass::PrintSelf(os, indent);
141
142 os << indent << "Direction: " << m_Direction << std::endl;
143 }
144
148
149protected:
152 using CoefficientVector = typename std::vector<PixelRealType>;
153
156 virtual CoefficientVector
158
161 virtual void
163
169 virtual void
171
173 void
175 {
176 for (unsigned int i = 0; i < this->Size(); ++i)
177 {
178 this->operator[](i) = PixelType{};
179 }
180 }
181
182private:
184 unsigned int m_Direction{ 0 };
185};
186} // namespace itk
187
188#ifndef ITK_MANUAL_INSTANTIATION
189# include "itkNeighborhoodOperator.hxx"
190#endif
191
192/*
193#ifndef ITK_MANUAL_INSTANTIATION
194#include "itkNeighborhoodOperator.hxx"
195#endif
196*/
197#endif
Control indentation during Print() invocation.
Definition itkIndent.h:50
Virtual class that defines a common interface to all neighborhood operator subtypes.
void SetDirection(const unsigned int direction)
Neighborhood< TPixel, VDimension, TAllocator > Superclass
virtual void FillCenteredDirectional(const CoefficientVector &)
virtual CoefficientVector GenerateCoefficients()=0
virtual void Fill(const CoefficientVector &)=0
void ScaleCoefficients(PixelRealType)
virtual void CreateToRadius(const SizeValueType)
virtual void CreateDirectional()
virtual void CreateToRadius(const SizeType &)
void PrintSelf(std::ostream &os, Indent indent) const override
virtual void PrintSelf(std::ostream &, Indent) const
Neighborhood()=default
A flexible iterator for itk containers(i.e. itk::Neighborhood) that support pixel access through oper...
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....