ITK  4.8.0
Insight Segmentation and Registration Toolkit
itkShapeDetectionLevelSetFunction.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 itkShapeDetectionLevelSetFunction_h
19 #define itkShapeDetectionLevelSetFunction_h
20 
22 
23 namespace itk
24 {
71 template< typename TImageType, typename TFeatureImageType = TImageType >
73  public SegmentationLevelSetFunction< TImageType, TFeatureImageType >
74 {
75 public:
81  typedef TFeatureImageType FeatureImageType;
82 
84  itkNewMacro(Self);
85 
88 
90  typedef typename Superclass::ImageType ImageType;
97 
99  itkStaticConstMacro(ImageDimension, unsigned int,
101 
102  virtual void CalculateSpeedImage() ITK_OVERRIDE;
103 
105  virtual ScalarValueType CurvatureSpeed(const NeighborhoodType & neighborhood,
106  const FloatOffsetType & offset, GlobalDataStruct *gd) const ITK_OVERRIDE
107  { return this->PropagationSpeed(neighborhood, offset, gd); }
108 
109  virtual void Initialize(const RadiusType & r) ITK_OVERRIDE
110  {
112 
116  }
117 
118 protected:
120  {
124  }
125 
127 
128  ShapeDetectionLevelSetFunction(const Self &); //purposely not implemented
129  void operator=(const Self &); //purposely not implemented
130 };
131 } // end namespace itk
132 
133 #ifndef ITK_MANUAL_INSTANTIATION
134 #include "itkShapeDetectionLevelSetFunction.hxx"
135 #endif
136 
137 #endif
Light weight base class for most itk classes.
This function is used in the ShapeDetectionLevelSetImageFilter to segment structures in an image base...
virtual ScalarValueType CurvatureSpeed(const NeighborhoodType &neighborhood, const FloatOffsetType &offset, GlobalDataStruct *gd) const override
ConstNeighborhoodIterator< TImageType >::RadiusType RadiusType
Const version of NeighborhoodIterator, defining iteration of a local N-dimensional neighborhood of pi...
virtual void Initialize(const RadiusType &r) override
virtual ScalarValueType PropagationSpeed(const NeighborhoodType &, const FloatOffsetType &, GlobalDataStruct *gd) const override
A templated class holding a n-Dimensional vector.
Definition: itkVector.h:62
virtual void SetPropagationWeight(const ScalarValueType p)
SegmentationLevelSetFunction< TImageType, TFeatureImageType > Superclass
virtual void CalculateSpeedImage() override
virtual void Initialize(const RadiusType &r) override
Define additional traits for native types such as int or float.
virtual void SetCurvatureWeight(const ScalarValueType c)
virtual void SetAdvectionWeight(const ScalarValueType a)