ITK  5.0.0
Insight Segmentation and Registration Toolkit
itkGaussianSpatialFunction.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 itkGaussianSpatialFunction_h
19 #define itkGaussianSpatialFunction_h
20 
21 #include "itkSpatialFunction.h"
22 #include "itkFixedArray.h"
23 #include "itkFloatTypes.h"
24 
25 namespace itk
26 {
41 template< typename TOutput = double,
42  unsigned int VImageDimension = 3,
43  typename TInput = Point< SpacePrecisionType, VImageDimension > >
44 class ITK_TEMPLATE_EXPORT GaussianSpatialFunction:
45  public SpatialFunction< TOutput, VImageDimension, TInput >
46 {
47 public:
48  ITK_DISALLOW_COPY_AND_ASSIGN(GaussianSpatialFunction);
49 
55 
57  itkNewMacro(Self);
58 
61 
63  using InputType = typename Superclass::InputType;
64 
66  using OutputType = typename Superclass::OutputType;
67 
70 
72  OutputType Evaluate(const TInput & position) const override;
73 
75  itkSetMacro(Scale, double);
76  itkGetConstMacro(Scale, double);
78 
80  itkSetMacro(Normalized, bool);
81  itkGetConstMacro(Normalized, bool);
82  itkBooleanMacro(Normalized);
84 
86  itkSetMacro(Sigma, ArrayType);
87  itkGetConstMacro(Sigma, ArrayType);
89 
91  itkSetMacro(Mean, ArrayType);
92  itkGetConstMacro(Mean, ArrayType);
94 
95 protected:
97  ~GaussianSpatialFunction() override = default;
98  void PrintSelf(std::ostream & os, Indent indent) const override;
99 
100 private:
102 
104 
105  double m_Scale{ 1.0 };
106 
107  bool m_Normalized{ false };
108 };
109 } // end namespace itk
110 
111 #ifndef ITK_MANUAL_INSTANTIATION
112 #include "itkGaussianSpatialFunction.hxx"
113 #endif
114 
115 #endif
Base class for all ITK function objects.
N-dimensional Gaussian spatial function class.
Control indentation during Print() invocation.
Definition: itkIndent.h:49
N-dimensional spatial function class.
Base class for most ITK classes.
Definition: itkObject.h:60