ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkSphereSignedDistanceFunction.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 itkSphereSignedDistanceFunction_h
19 #define itkSphereSignedDistanceFunction_h
20 
22 #include "itkVector.h"
23 
24 namespace itk
25 {
43 template< typename TCoordRep, unsigned int VSpaceDimension >
44 class ITK_TEMPLATE_EXPORT SphereSignedDistanceFunction:
45  public ShapeSignedDistanceFunction< TCoordRep, VSpaceDimension >
46 {
47 public:
53 
55  itkTypeMacro(SphereSignedDistanceFunction, ShapeSignedDistancFunction);
56 
58  itkNewMacro(Self);
59 
61  typedef typename Superclass::OutputType OutputType;
62 
64  typedef typename Superclass::InputType InputType;
65 
67  itkStaticConstMacro(SpaceDimension, unsigned int, Superclass::SpaceDimension);
68 
70  typedef typename Superclass::CoordRepType CoordRepType;
71 
73  typedef typename Superclass::PointType PointType;
74 
76  typedef typename Superclass::ParametersType ParametersType;
77 
80  virtual void SetParameters(const ParametersType &) ITK_OVERRIDE;
81 
82  virtual unsigned int GetNumberOfShapeParameters(void) const ITK_OVERRIDE
83  { return 1; }
84  virtual unsigned int GetNumberOfPoseParameters(void) const ITK_OVERRIDE
85  { return SpaceDimension; }
86 
88  virtual OutputType Evaluate(const PointType & point) const ITK_OVERRIDE;
89 
90 protected:
93 
94  void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE;
95 
96 private:
97  ITK_DISALLOW_COPY_AND_ASSIGN(SphereSignedDistanceFunction);
98 
100 
102  double m_Radius;
103 };
104 } // end namespace itk
105 
106 #ifndef ITK_MANUAL_INSTANTIATION
107 #include "itkSphereSignedDistanceFunction.hxx"
108 #endif
109 
110 #endif
Light weight base class for most itk classes.
ShapeSignedDistanceFunction< TCoordRep, VSpaceDimension > Superclass
virtual unsigned int GetNumberOfPoseParameters(void) const override
Compute the signed distance from a N-dimensional sphere.
Vector< CoordRepType, itkGetStaticConstMacro(SpaceDimension) > VectorType
Base class for functions which evaluates the signed distance from a shape.
Control indentation during Print() invocation.
Definition: itkIndent.h:49