ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkLaplacianOperator.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 itkLaplacianOperator_h
19#define itkLaplacianOperator_h
20
22
23namespace itk
24{
66template <typename TPixel, unsigned int VDimension = 2, typename TAllocator = NeighborhoodAllocator<TPixel>>
67class ITK_TEMPLATE_EXPORT LaplacianOperator : public NeighborhoodOperator<TPixel, VDimension, TAllocator>
68{
69public:
73
75 itkOverrideGetNameOfClassMacro(LaplacianOperator);
76
77 using typename Superclass::SizeType;
78
80 {
81 for (unsigned int i = 0; i < VDimension; ++i)
82 {
83 m_DerivativeScalings[i] = 1.0;
84 }
85 }
86
88 void
90
91 void
92 PrintSelf(std::ostream & os, Indent indent) const override
93 {
94 Superclass::PrintSelf(os, indent);
95
96 os << indent << "DerivativeScalings: " << m_DerivativeScalings << std::endl;
97 }
98
103 void
104 SetDerivativeScalings(const double * s);
105 itkGetConstMacro(DerivativeScalings, const double *);
107protected:
109 using typename Superclass::CoefficientVector;
110
114
117 void
118 Fill(const CoefficientVector &) override;
119
120private:
122 double m_DerivativeScalings[VDimension]{};
123};
124} // namespace itk
125
126#ifndef ITK_MANUAL_INSTANTIATION
127# include "itkLaplacianOperator.hxx"
128#endif
129
130#endif
Control indentation during Print() invocation.
Definition itkIndent.h:50
double m_DerivativeScalings[VDimension]
void SetDerivativeScalings(const double *s)
NeighborhoodOperator< TPixel, VDimension, TAllocator > Superclass
void PrintSelf(std::ostream &os, Indent indent) const override
CoefficientVector GenerateCoefficients() override
void Fill(const CoefficientVector &) override
typename std::vector< PixelRealType > CoefficientVector
Virtual class that defines a common interface to all neighborhood operator subtypes.
void PrintSelf(std::ostream &os, Indent indent) const override
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....