ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkDerivativeOperator.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 itkDerivativeOperator_h
19#define itkDerivativeOperator_h
20
22
23namespace itk
24{
67template <typename TPixel, unsigned int VDimension = 2, typename TAllocator = NeighborhoodAllocator<TPixel>>
68class ITK_TEMPLATE_EXPORT DerivativeOperator : public NeighborhoodOperator<TPixel, VDimension, TAllocator>
69{
70public:
74
76 itkOverrideGetNameOfClassMacro(DerivativeOperator);
77
79 using typename Superclass::PixelRealType;
80
82 void
83 SetOrder(const unsigned int order)
84 {
85 this->m_Order = order;
86 }
87
89 unsigned int
90 GetOrder() const
91 {
92 return m_Order;
93 }
94
95 void
96 PrintSelf(std::ostream & os, Indent indent) const override
97 {
98 Superclass::PrintSelf(os, indent);
99
100 os << indent << "Order: " << m_Order << std::endl;
101 }
102
103protected:
105 using typename Superclass::CoefficientVector;
106
108 CoefficientVector
110
112 void
113 Fill(const CoefficientVector & coeff) override
114 {
116 }
117
118private:
120 unsigned int m_Order{ 1 };
121};
122} // namespace itk
123
124#ifndef ITK_MANUAL_INSTANTIATION
125# include "itkDerivativeOperator.hxx"
126#endif
127
128#endif
A NeighborhoodOperator for taking an n-th order derivative at a pixel.
NeighborhoodOperator< TPixel, VDimension, TAllocator > Superclass
void Fill(const CoefficientVector &coeff) override
CoefficientVector GenerateCoefficients() override
void PrintSelf(std::ostream &os, Indent indent) const override
void SetOrder(const unsigned int order)
unsigned int GetOrder() const
typename std::vector< PixelRealType > CoefficientVector
Control indentation during Print() invocation.
Definition itkIndent.h:50
Virtual class that defines a common interface to all neighborhood operator subtypes.
virtual void FillCenteredDirectional(const CoefficientVector &)
void PrintSelf(std::ostream &os, Indent indent) const override
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....