السلام عليكم و رحمة الله و بركاته
Before i begin talking about SNAKES, first i have to answer some questions.
What is image segmentation?
- It's subdividing or partitioning an image into it's constituent regions.
Why?
- To extract features of interest in images by looking for mathematical entities which describe the shapes of objects appearing in images.
So, why do we need image segmentation in our project?
- we want to extract the lung area from a CT (Computed Tomography) image which is our interest, for computing and detecting the abnormal shadow areas that are suspicious to be tumors.
What we have to do?
-we have to find a method that looks for any shape in the image that is smooth and forms a closed contour.
-From here we begin our research in "SNAKES".
Framework for Snakes
Before i begin talking about SNAKES, first i have to answer some questions.
What is image segmentation?
- It's subdividing or partitioning an image into it's constituent regions.
Why?
- To extract features of interest in images by looking for mathematical entities which describe the shapes of objects appearing in images.
So, why do we need image segmentation in our project?
- we want to extract the lung area from a CT (Computed Tomography) image which is our interest, for computing and detecting the abnormal shadow areas that are suspicious to be tumors.
What we have to do?
-we have to find a method that looks for any shape in the image that is smooth and forms a closed contour.
-From here we begin our research in "SNAKES".
Active contour model:
Introduction:
- The active contour model algorithm, first introduced by Kass et al., deforms a contour to lock onto features of interest within an image.
- Usually the features are lines, edges, and/or object boundaries.
- Kass et al. named their algorithm, “Snakes” because the deformable contours resemble snakes as they move
Framework for Snakes
- The active contour system provides the ability to interactively guide the contour detection by placing initial points
- A higher level process or a user initializes any curve close to the object boundary.
- The snake then starts deforming and moving towards the desired object boundary.
- In the end it completely “shrink-wraps” around the object.

Post a Comment