Difference between revisions of "Projects:ProstateSegmentation"

From NAMIC Wiki
Jump to: navigation, search
Line 13: Line 13:
  
 
===Cellular Automata===
 
===Cellular Automata===
1 Image segmentation using CA algorithm was proposed by V Vezhnevets and V Konouchine, in "Grow-Cut" - Interactive Multi-Label N-D Image Segmentation. Graphicon, 2005. The algorithm starts from an initialization where two patches in foreground and background, respectively, are picked by hand. Then algorithm iteratively determine the category of each pixel/voxel in the image.
+
Image segmentation using CA algorithm was proposed by V Vezhnevets and V Konouchine, in "Grow-Cut" - Interactive Multi-Label N-D Image Segmentation. Graphicon, 2005. The algorithm starts from an initialization where two patches in foreground and background, respectively, are picked by hand. Then algorithm iteratively determine the category of each pixel/voxel in the image.
  
1.1 Definition of Cellular Automaton for segmentation. A Cellular Automaton is a pixel/voxel in image consisting three state variables: '''Label''', '''Strength''' and '''Feature'''. Thus as in the scenario of segmentation, the Label is the category the pixel belongs to, the Strength describes how confident is this automaton belonging to current category while the Feature is its intensity. Graphically, we use a cartoon to depict one automaton as in the picture:
+
====Definition of Cellular Automaton for segmentation.====
 +
A Cellular Automaton is a pixel/voxel in image consisting three state variables: '''Label''', '''Strength''' and '''Feature'''. Thus as in the scenario of segmentation, the Label is the category the pixel belongs to, the Strength describes how confident is this automaton belonging to current category while the Feature is its intensity. Graphically, we use a cartoon to depict one automaton as in the picture:
  
 
[[Image:CA_anAutomaton.png]]
 
[[Image:CA_anAutomaton.png]]
  
1.2 Initialization of CA. The algorithm needs some seed points in the object and background. The initialization doesn't have to be close to the boundary. Usually just two strokes in and outside of object is enough. We initialize the background region by drawing a square enclosing the whole object thus those outside are background. And we initialize the foreground by drawing a triangle inside the object. Thus, the '''Label''' of each cellular automaton in the manually drawn foreground and background is set to there corresponding value while the '''Strength''' of each automaton is set to 1 indicating we have 100% confidence of its category. However, there are regions belonging neither to the foreground and background. The '''Label''' and '''Strength''' of the automata in those regions are set to ''undecided'' and 0, respectively. And it is those we are going to decide in the subsequent steps. Before describing that process, we give an image illustrating the initialization step in below.
+
====Initialization of CA.====
 +
The algorithm needs some seed points in the object and background. The initialization doesn't have to be close to the boundary. Usually just two strokes in and outside of object is enough. We initialize the background region by drawing a square enclosing the whole object thus those outside are background. And we initialize the foreground by drawing a triangle inside the object. Thus, the '''Label''' of each cellular automaton in the manually drawn foreground and background is set to there corresponding value while the '''Strength''' of each automaton is set to 1 indicating we have 100% confidence of its category. However, there are regions belonging neither to the foreground and background. The '''Label''' and '''Strength''' of the automata in those regions are set to ''undecided'' and 0, respectively. And it is those we are going to decide in the subsequent steps. Before describing that process, we give an image illustrating the initialization step in below.
  
 
[[Image:CA_initialization.png]]
 
[[Image:CA_initialization.png]]
  
1.3 Attacking stage of CA and convergence.
+
====Attacking stage of CA and convergence.====
 +
Each automaton is "attacked" by its neighbors assigned to a different '''Label'''.
  
 
===Geodesic Active Contour===
 
===Geodesic Active Contour===

Revision as of 00:47, 29 April 2008

Home < Projects:ProstateSegmentation

Back to Georgia Tech Algorithms

Prostate Segmentation

The objective is to extract the prostate from a 3D ultrasound data set.

Description

Two ways are employed to attack the problem. The first way is a combination of Cellular Automata(CA also called Grow Cut) with Geodesic Active Contour(GAC) methods. While the second is using a ellipsoid to match the prostate in 3D image. The details are given below.


Cellular Automata and Geodesic Active Contour.

Cellular Automata incorporate the manual initialization to overcome the weak boundary and inhomogeneity in the object or the background. Its result is fed in for the Geodesic Active Contour method for fine tune.

Cellular Automata

Image segmentation using CA algorithm was proposed by V Vezhnevets and V Konouchine, in "Grow-Cut" - Interactive Multi-Label N-D Image Segmentation. Graphicon, 2005. The algorithm starts from an initialization where two patches in foreground and background, respectively, are picked by hand. Then algorithm iteratively determine the category of each pixel/voxel in the image.

Definition of Cellular Automaton for segmentation.

A Cellular Automaton is a pixel/voxel in image consisting three state variables: Label, Strength and Feature. Thus as in the scenario of segmentation, the Label is the category the pixel belongs to, the Strength describes how confident is this automaton belonging to current category while the Feature is its intensity. Graphically, we use a cartoon to depict one automaton as in the picture:

CA anAutomaton.png

Initialization of CA.

The algorithm needs some seed points in the object and background. The initialization doesn't have to be close to the boundary. Usually just two strokes in and outside of object is enough. We initialize the background region by drawing a square enclosing the whole object thus those outside are background. And we initialize the foreground by drawing a triangle inside the object. Thus, the Label of each cellular automaton in the manually drawn foreground and background is set to there corresponding value while the Strength of each automaton is set to 1 indicating we have 100% confidence of its category. However, there are regions belonging neither to the foreground and background. The Label and Strength of the automata in those regions are set to undecided and 0, respectively. And it is those we are going to decide in the subsequent steps. Before describing that process, we give an image illustrating the initialization step in below.

CA initialization.png

Attacking stage of CA and convergence.

Each automaton is "attacked" by its neighbors assigned to a different Label.

Geodesic Active Contour

2 CA algorithm does not deal with smoothness directly. A GAC step is employed, for one purpose, to smooth the result given by CA and for the other to fine tune the contour.

3 Both algorithms are implemented in 3D. A ITK-Cellular Automata filter, handling N-D data, has already been completed and submitted into the NA-MIC SandBox.

Ellipsoid Matching

Prostate is usually modeled as an ellipsoid . Also, with no control of the global shape, the algorithm is highly influenced by noise and incomplete image information like weak boundary. A shape prior would be used to deal with such situations. However, firstly the prior is learned from a sufficient number of training data, which may not be available. Secondly the shapes need to be aligned in order to be learned or applied in segmentation. However for prostate which is mostly an ellipsoid in shape, there's not much prominent shape feature to drive the alignment and segmentation.

So we are trying to first model the prostate using an ellipsoid. With that global constrain of shape, extraction it from image would be more robust. Secondly, if the prostate is well captured by an ellipsoid, then starting from there more local method would be used to capture the detail feature of the organ.

This way of attacking is under developing and some result would be available before the Core 1 meeting in late May.

Key Investigators

  • Georgia Tech Algorithms: Yi Gao, Allen Tannenbaum

Publications