ITK  4.8.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 GaussianDerivativeSpatialFunction:public SpatialFunction< TOutput, VImageDimension, TInput >
45 {
46 public:
52 
54  itkNewMacro(Self);
55 
58 
60  typedef typename Superclass::InputType InputType;
61 
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:
95  void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE;
96 
97 private:
98  GaussianDerivativeSpatialFunction(const Self &); //purposely not implemented
99  void operator=(const Self &); //purposely not implemented
100 
102  mutable unsigned int m_Direction;
103 
106 
109 
111  double m_Scale;
112 
115 };
116 } // end namespace itk
117 
118 #ifndef ITK_MANUAL_INSTANTIATION
119 #include "itkGaussianDerivativeSpatialFunction.hxx"
120 #endif
121 
122 #endif
OutputType Evaluate(const TInput &position) const override
Superclass::InputType InputType
N-dimensional Gaussian spatial function class.
Base class for all ITK function objects.
SpatialFunction< TOutput, VImageDimension, TInput > Superclass
Superclass::OutputType OutputType
Control indentation during Print() invocation.
Definition: itkIndent.h:49
N-dimensional spatial function class.
VectorType EvaluateVector(const TInput &position) const
void PrintSelf(std::ostream &os, Indent indent) const override