![]() | ||
Active contour model, also called snakes, is a framework in computer vision for delineating an object outline from a possibly noisy 2D image. The snakes model is popular in computer vision, and snakes are greatly used in applications like object tracking, shape recognition, segmentation, edge detection and stereo matching.
Contents
- Motivation
- Energy formulation
- Internal energy
- Image energy
- Line functional
- Edge functional
- Termination functional
- Constraint energy
- Optimization through gradient descent
- Discrete approximation
- Numerical instability due to discrete time
- Numerical instability due to discrete space
- Implementation
- Some variants of snakes
- GVF snake model
- The balloon model
- Diffusion snakes model
- Geometric active contours
- Relations to graph cuts
- References
A snake is an energy minimizing, deformable spline influenced by constraint and image forces that pull it towards object contours and internal forces that resist deformation. Snakes may be understood as a special case of the general technique of matching a deformable model to an image by means of energy minimization. In two dimensions, the active shape model represents a discrete version of this approach, taking advantage of the point distribution model to restrict the shape range to an explicit domain learned from a training set.
Snakes do not solve the entire problem of finding contours in images, since the method requires knowledge of the desired contour shape beforehand. Rather, they depend on other mechanisms such as interaction with a user, interaction with some higher level image understanding process, or information from image data adjacent in time or space.
Motivation
In computer vision, contour models describe the boundaries of shapes in an image. Snakes in particular are designed to solve problems where the approximate shape of the boundary is known. By being a deformable model, snakes can adapt to differences and noise in stereo matching and motion tracking. Additionally, the method can find Illusory contours in the image by ignoring missing boundary information.
Compared to classical feature extraction techniques, snakes have multiple advantages:
The key drawbacks of the traditional snakes are
Energy formulation
A simple elastic snake is defined by a set of n points
The energy function of the snake is the sum of its external energy and internal energy, or
Internal energy
The internal energy of the snake is composed of the continuity of the contour
This can be expanded as
Where
In practice, a large weight
Image energy
Energy in the image is some function of the features of the image. This is one of the most common points of modification in derivative methods. Features in images and images themselves can be processed in many and various ways.
For an image
where
Line functional
The line functional is the intensity of the image, which can be represented as
The sign of
Some smoothing or noise reduction may be used on the image, which then the line functional appears as
Edge functional
The edge functional is based on the image gradient. One implementation of this is
A snake originating far from the desired object contour may erroneously converge to some local minimum. Scale space continuation can be used in order to avoid these local minima. This is achieved by using a blur filter on the image and reducing the amount of blur as the calculation progresses to refine the fit of the snake. The energy functional using scale space continuation is
where
Termination functional
Curvature of level lines in a slightly smoothed image can be used to detect corners and terminations in an image. Using this method, let
with gradient angle
unit vectors along the gradient direction
and unit vectors perpendicular to the gradient direction
The termination functional of energy can be represented as
Constraint energy
Some systems, including the original snakes implementation, allowed for user interaction to guide the snakes, not only in initial placement but also in their energy terms. Such constraint energy
Optimization through gradient descent
Given an initial guess for a snake, the energy function of the snake is iteratively minimized. Gradient descent minimization is one of the simplest optimizations which can be used to minimize snake energy. Each iteration takes one step in the negative gradient of the point with controlled step size
Where
Assuming the weights
Discrete approximation
In practice, images have finite resolution and can only be integrated over finite time steps
The energy function of the snake can be approximated by using the discrete points on the snake.
Consequentially, the forces of the snake can be approximated as
Gradient approximation can be done through any finite approximation method with respect to s, such as Finite difference.
Numerical instability due to discrete time
The introduction of discrete time into the algorithm can introduce updates which the snake is moved past the minima it is attracted to; this further can cause oscillations around the minima or lead to a different minima being found.
This can be avoided through tuning the time step such that the step size is never greater than a pixel due to the image forces. However, in regions of low energy, the internal energies will dominate the update.
Alternatively, the image forces can be normalized for each step such that the image forces only update the snake by one pixel. This can be formulated as
where
Numerical instability due to discrete space
The energies in a continuous image may have zero-crossing that do not exist as a pixel in the image. In this case, a point in the snake would oscillate between the two pixels that neighbor this zero-crossing. This oscillation can be avoided by using interpolation between pixels instead of nearest neighbor.
Implementation
The following pseudocode implements the snakes method in a general form
Where generateImageEnergy (I) can be written as
Some variants of snakes
The default method of snakes has various limitation and corner cases where the convergence performs poorly. Several alternatives exist which addresses issues of the default method, though with their own trade-offs. A few are listed here.
GVF snake model
The gradient vector flow (GVF) snake model addresses two issues with snakes:
In 2D, the GVF vector field
where
This can be solved through iteration towards a steady-state value.
This result replaces the default external force.
The primary issue with using GVF is the smoothing term
The balloon model
The balloon model addresses these problems with the default active contour model:
The balloon model introduces an inflation term into the forces acting on the snake
where
Three issues arise from using the balloon model:
Diffusion snakes model
The diffusion snake model addresses the sensitivity of snakes to noise, clutter, and occlusion. It implements a modification of the Mumford–Shah functional and its cartoon limit and incorporates statistical shape knowledge. The default image energy functional
where
where
where
The functional
The strength of this method relies on the strength of the training data as well as the tuning of the modified Mumford–Shah functional. Different snakes will require different training data sets and tunings.
Geometric active contours
Geometric active contour, or geodesic active contour (GAC) or conformal active contours employs ideas from Euclidean curve shortening evolution. Contours split and merge depending on the detection of objects in the image. These models are largely inspired by level sets, and have been extensively employed in medical image computing.
For example, the gradient descent curve evolution equation of GAC is
where
This simple yet powerful level-set reformation enables active contours to handle topology changes during the gradient descent curve evolution. It has inspired tremendous progress in the related fields, and using numerical methods to solve the level-set reformulation is now commonly known as the level set method. Although the level set method has become quite a popular tool for implementing active contours, Wang and Chan argued that not all curve evolution equations should be directly solved by it.
More recent developments in active contours address modeling of regional properties, incorporation of flexible shape priors and fully automatic segmentation, etc.
Statistical models combining local and global features have been formulated by Lankton and Allen Tannenbaum.
Relations to graph cuts
Graph cuts, or max-flow/min-cut, is a generic method for minimizing a particular form of energy called Markov random field (MRF) energy. The Graph cuts method has been applied to image segmentation as well, and it sometimes outperforms the level set method when the model is MRF or can be approximated by MRF.