#include <itkGeodesicActiveContourLevelSetFunction.h>
This function is used in GeodesicActiveContourLevelSetImageFilter to segment structures in an image based on a user supplied edge potential map.
GeodesicActiveContourLevelSetFunction is a subclass of the generic LevelSetFunction. It is used to segment structures in an image based on a user supplied edge potential map \( g(I) \), which has values close to zero in regions near edges (or high image gradient) and values close to one in regions with relatively constant intensity. Typically, the edge potential map is a function of the gradient, for example:
\[ g(I) = 1 / ( 1 + | (\nabla * G)(I)| ) \]
\[ g(I) = \exp^{-|(\nabla * G)(I)|} \]
where \( I \) is image intensity and \( (\nabla * G) \) is the derivative of Gaussian operator.
The edge potential image is set via the SetFeatureImage() method.
In this function both the propagation term \( P(\mathbf{x}) \) and the curvature spatial modifier term \( Z(\mathbf{x}) \) are taken directly from the edge potential image such that:
\[ P(\mathbf{x}) = g(\mathbf{x}) \]
\[ Z(\mathbf{x}) = g(\mathbf{x}) \]
An advection term \( \mathbf{A}(\mathbf{x}) \) is constructed from the negative gradient of the edge potential image.
\[ \mathbf{A}(\mathbf{x}) = -\nabla g(\mathbf{x}) \]
This term behaves like a doublet attracting the contour to the edges.
This implementation is based on [20].
Definition at line 73 of file itkGeodesicActiveContourLevelSetFunction.h.
Static Public Member Functions | |
static Pointer | New () |
![]() | |
static double | GetMaximumCurvatureTimeStep () |
static double | GetMaximumPropagationTimeStep () |
static Pointer | New () |
static void | SetMaximumCurvatureTimeStep (double n) |
static void | SetMaximumPropagationTimeStep (double n) |
![]() | |
static void | BreakOnError () |
static Pointer | New () |
Static Public Attributes | |
static constexpr unsigned int | ImageDimension = Superclass::ImageDimension |
![]() | |
static constexpr unsigned int | ImageDimension |
![]() | |
static constexpr unsigned int | ImageDimension = Superclass::ImageDimension |
![]() | |
static constexpr unsigned int | ImageDimension = ImageType::ImageDimension |
Private Attributes | |
double | m_DerivativeSigma {} |
using itk::GeodesicActiveContourLevelSetFunction< TImageType, TFeatureImageType >::ConstPointer = SmartPointer<const Self> |
Definition at line 83 of file itkGeodesicActiveContourLevelSetFunction.h.
using itk::GeodesicActiveContourLevelSetFunction< TImageType, TFeatureImageType >::FeatureImageType = TFeatureImageType |
Definition at line 84 of file itkGeodesicActiveContourLevelSetFunction.h.
using itk::SegmentationLevelSetFunction< TImageType, TFeatureImageType >::FeatureScalarType |
Definition at line 69 of file itkSegmentationLevelSetFunction.h.
using itk::GeodesicActiveContourLevelSetFunction< TImageType, TFeatureImageType >::Pointer = SmartPointer<Self> |
Definition at line 82 of file itkGeodesicActiveContourLevelSetFunction.h.
using itk::GeodesicActiveContourLevelSetFunction< TImageType, TFeatureImageType >::Self = GeodesicActiveContourLevelSetFunction |
Standard class type aliases.
Definition at line 80 of file itkGeodesicActiveContourLevelSetFunction.h.
using itk::GeodesicActiveContourLevelSetFunction< TImageType, TFeatureImageType >::Superclass = SegmentationLevelSetFunction<TImageType, TFeatureImageType> |
Definition at line 81 of file itkGeodesicActiveContourLevelSetFunction.h.
using itk::SegmentationLevelSetFunction< TImageType, TFeatureImageType >::VectorImageType |
Define an image type for the advection field.
Definition at line 78 of file itkSegmentationLevelSetFunction.h.
|
inlineprotected |
Definition at line 147 of file itkGeodesicActiveContourLevelSetFunction.h.
|
overrideprotecteddefault |
|
overridevirtual |
Compute the advection field from feature image.
Reimplemented from itk::SegmentationLevelSetFunction< TImageType, TImageType >.
|
overridevirtual |
Compute speed image from feature image.
Reimplemented from itk::SegmentationLevelSetFunction< TImageType, TImageType >.
|
virtual |
Create an object from an instance, potentially deferring to a factory. This method allows you to create an instance of an object that is exactly the same type as the referring object. This is useful in cases where an object has been cast back to a base class.
Reimplemented from itk::LightObject.
|
inlineoverridevirtual |
The curvature speed is same as the propagation speed.
Reimplemented from itk::LevelSetFunction< TImageType >.
Definition at line 115 of file itkGeodesicActiveContourLevelSetFunction.h.
|
inline |
Set/Get the sigma for the Gaussian kernel used to compute the gradient of the feature image needed for the advection term of the equation.
Definition at line 130 of file itkGeodesicActiveContourLevelSetFunction.h.
|
overridevirtual |
Reimplemented from itk::FiniteDifferenceFunction< TImageType >.
|
inlineoverridevirtual |
This method creates the appropriate member variable operators for the level-set calculations. The argument to this function is a the radius necessary for performing the level-set calculations.
Reimplemented from itk::LevelSetFunction< TImageType >.
Definition at line 137 of file itkGeodesicActiveContourLevelSetFunction.h.
|
static |
Method for creation through the object factory.
|
overrideprotectedvirtual |
Methods invoked by Print() to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.
Reimplemented from itk::FiniteDifferenceFunction< TImageType >.
|
inline |
Set/Get the sigma for the Gaussian kernel used to compute the gradient of the feature image needed for the advection term of the equation.
Definition at line 125 of file itkGeodesicActiveContourLevelSetFunction.h.
|
staticconstexpr |
Extract some parameters from the superclass.
Definition at line 103 of file itkGeodesicActiveContourLevelSetFunction.h.
|
private |
Definition at line 162 of file itkGeodesicActiveContourLevelSetFunction.h.