ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkGaussianDerivativeSpatialFunction.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 itkGaussianDerivativeSpatialFunction_h
19 #define itkGaussianDerivativeSpatialFunction_h
20 
21 #include "itkSpatialFunction.h"
22 #include "itkFixedArray.h"
23 
24 namespace itk
25 {
41 template< typename TOutput = double,
42  unsigned int VImageDimension = 3,
43  typename TInput = Point< double, VImageDimension > >
44 class ITK_TEMPLATE_EXPORT GaussianDerivativeSpatialFunction:public SpatialFunction< TOutput, VImageDimension, TInput >
45 {
46 public:
52 
54  itkNewMacro(Self);
55 
58 
60  typedef typename Superclass::InputType InputType;
61 
63  typedef typename Superclass::OutputType OutputType;
64 
67 
70 
74  OutputType Evaluate(const TInput & position) const ITK_OVERRIDE;
75 
77  VectorType EvaluateVector(const TInput & position) const;
78 
80  itkSetMacro(Scale, double);
81  itkGetConstMacro(Scale, double);
82  itkSetMacro(Normalized, bool);
83  itkGetConstMacro(Normalized, bool);
84  itkSetMacro(Sigma, ArrayType);
85  itkGetConstMacro(Sigma, ArrayType);
86  itkSetMacro(Mean, ArrayType);
87  itkGetConstMacro(Mean, ArrayType);
88  itkSetMacro(Direction, unsigned int);
89  itkGetConstMacro(Direction, unsigned int);
91 
92 protected:
94  virtual ~GaussianDerivativeSpatialFunction() ITK_OVERRIDE;
95  void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE;
96 
97 private:
98  ITK_DISALLOW_COPY_AND_ASSIGN(GaussianDerivativeSpatialFunction);
99 
101  mutable unsigned int m_Direction;
102 
104  ArrayType m_Sigma;
105 
107  ArrayType m_Mean;
108 
110  double m_Scale;
111 
113  bool m_Normalized;
114 };
115 } // end namespace itk
116 
117 #ifndef ITK_MANUAL_INSTANTIATION
118 #include "itkGaussianDerivativeSpatialFunction.hxx"
119 #endif
120 
121 #endif
N-dimensional Gaussian spatial function class.
Base class for all ITK function objects.
SpatialFunction< TOutput, VImageDimension, TInput > Superclass
Control indentation during Print() invocation.
Definition: itkIndent.h:49
N-dimensional spatial function class.