ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkShapeDetectionLevelSetFunction.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
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 * https://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
23namespace itk
24{
67template <typename TImageType, typename TFeatureImageType = TImageType>
68class ITK_TEMPLATE_EXPORT ShapeDetectionLevelSetFunction
69 : public SegmentationLevelSetFunction<TImageType, TFeatureImageType>
70{
71public:
72 ITK_DISALLOW_COPY_AND_MOVE(ShapeDetectionLevelSetFunction);
73
79 using FeatureImageType = TFeatureImageType;
80
82 itkNewMacro(Self);
83
85 itkOverrideGetNameOfClassMacro(ShapeDetectionLevelSetFunction);
86
88 using typename Superclass::ImageType;
89 using typename Superclass::NeighborhoodType;
90 using typename Superclass::ScalarValueType;
91 using typename Superclass::FeatureScalarType;
92 using typename Superclass::RadiusType;
93 using typename Superclass::FloatOffsetType;
94 using typename Superclass::GlobalDataStruct;
95
97 static constexpr unsigned int ImageDimension = Superclass::ImageDimension;
98
99 void
101
104 CurvatureSpeed(const NeighborhoodType & neighborhood,
105 const FloatOffsetType & offset,
106 GlobalDataStruct * gd) const override
107 {
108 return this->PropagationSpeed(neighborhood, offset, gd);
109 }
110
111 void
120
121protected:
128
130};
131} // end namespace itk
132
133#ifndef ITK_MANUAL_INSTANTIATION
134# include "itkShapeDetectionLevelSetFunction.hxx"
135#endif
136
137#endif
virtual void SetAdvectionWeight(const ScalarValueType a)
virtual void SetPropagationWeight(const ScalarValueType p)
virtual void SetCurvatureWeight(const ScalarValueType c)
ConstNeighborhoodIterator< OutputImageType, DefaultBoundaryConditionType > NeighborhoodType
ScalarValueType PropagationSpeed(const NeighborhoodType &, const FloatOffsetType &, GlobalDataStruct *gd) const override
typename ConstNeighborhoodIterator< OutputImageType >::RadiusType RadiusType
~ShapeDetectionLevelSetFunction() override=default
typename ConstNeighborhoodIterator< OutputImageType >::RadiusType RadiusType
ConstNeighborhoodIterator< OutputImageType, DefaultBoundaryConditionType > NeighborhoodType
SegmentationLevelSetFunction< TImageType, TFeatureImageType > Superclass
ScalarValueType CurvatureSpeed(const NeighborhoodType &neighborhood, const FloatOffsetType &offset, GlobalDataStruct *gd) const override
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....