ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkGaussianKernelFunction.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
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  * http://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 itkGaussianKernelFunction_h
19 #define itkGaussianKernelFunction_h
20 
21 #include "itkKernelFunctionBase.h"
22 #include "itkMath.h"
23 #include <cmath>
24 
25 namespace itk
26 {
40 template< typename TRealValueType = double >
41 class GaussianKernelFunction:public KernelFunctionBase<TRealValueType>
42 {
43 public:
48 
49  typedef typename Superclass::RealType RealType;
51  itkNewMacro(Self);
52 
55 
57  TRealValueType Evaluate(const TRealValueType & u) const ITK_OVERRIDE
58  { return ( std::exp( static_cast< TRealValueType >(-0.5) * itk::Math::sqr(u) ) * m_Factor ); }
59 
60 protected:
61  GaussianKernelFunction(): m_Factor( NumericTraits< TRealValueType >::OneValue() / std::sqrt(static_cast< TRealValueType >(2.0 * itk::Math::pi )) ) {};
62  virtual ~GaussianKernelFunction() ITK_OVERRIDE {};
63  void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE
64  { Superclass::PrintSelf(os, indent); }
65 
66 private:
67  ITK_DISALLOW_COPY_AND_ASSIGN(GaussianKernelFunction);
68 
69  const TRealValueType m_Factor;
70 };
71 } // end namespace itk
72 
73 #endif
Light weight base class for most itk classes.
void PrintSelf(std::ostream &os, Indent indent) const override
static ITK_CONSTEXPR_VAR double pi
Definition: itkMath.h:66
TRealValueType Evaluate(const TRealValueType &u) const override
Kernel used for density estimation and nonparameteric regression.
KernelFunctionBase< TRealValueType > Superclass
bool sqr(const bool x)
Definition: itkMath.h:824
Control indentation during Print() invocation.
Definition: itkIndent.h:49
Define additional traits for native types such as int or float.
void PrintSelf(std::ostream &os, Indent indent) const override
Gaussian kernel used for density estimation and nonparameteric regression.