SlideShare une entreprise Scribd logo
1  sur  43
PRESENTATION
ON
DEFORMABLE MODEL FOR
MEDICAL IMAGE
SEGMENTATION
Presented By
Subhash Basishtha
Assam University
Silchar
Presentation Outline
 Introduction to Image Processing
 Steps of Image Processing
 Types of Image Processing
 Introduction to Image Segmentation
 Introduction to Medical Image Segmentation
 Application of Image Segmentation
 Example of Image Segmentation
 Need for Deformable Model
 What is Deformable Model??
 Types of Deformable Model
Introduction to Image Processing
 Image processing is a method to convert an
image into digital form and perform some
operations on it, in order to get an enhanced
image or to extract some useful information
from it.
 It is a type of signal dispensation in which
input is image, like video frame or photograph
and output may be image or characteristics
associated with that image.
Steps of Image Processing
 Importing the image with optical scanner or by
digital photography.
  Analyzing and manipulating the image which
includes data compression and image
enhancement and spotting patterns that are
not to human eyes like tissue,satellite
photographs.
   Output is the last stage in which result can be
altered image or report that is based on image
analysis.
Phases of digital image
processing
[13]
Contd..
 Image processing Steps are:
1. Image Acquisition
2. Image Enhancement
3. Image Restoration
4. ColorImage Processing
5. Wavelets and Multiresolution Processing
6. Compression
7. Morphological Processing
8. Segmentation
9. Representation and Description
10. Object recognition
11. Knowledge Base
Purpose
The purpose of image processing is divided into 5
groups. They are:
 1. Visualization - Observe the objects that are not
visible.
 2. Image sharpening and restoration - To create a
better image.
 3. Image retrieval - Seek for the image of interest.
 4. Measurement of pattern – Measures various
objects in an image.
 5. Image Recognition – Distinguish the objects in
an image.
Types
The two types of methods used forImage
Processing are Analog and Digital Image
Processing.
 Analog or visual techniques of image
processing can be used for the hard copies
like printouts and photographs.
 Digital Processing techniques help in
manipulation of the digital images by using
computers.
Introduction to Image
Segmentation
 The purpose of image segmentation is to partition an image into
meaningful regions with respect to a particular application.
 The goal of segmentation is to simplify and/or change the
representation of an image into something that is more meaningful
and easier to analyze
 The segmentation is based on measurements taken from the image
and might be grey level, colour, texture, depth or motion.
 Usually image segmentation is an initial and vital step in a series of
processes aimed at overall image understanding.
Introduction to Medical Image
Segmentation
 An important goal of medical image processing is to
transform raw images into a numerically symbolic form for
better representation, evaluation, and /or content based
search and mining.
 With the advent of medical image modalities that provide
different measures of internal anatomical structure and
function, physicians are now able to perform typical clinical
tasks such as patient diagnosis and monitoring more safely
than before such imaging technologies existed.
 Computerized image segmentation has played an
increasingly important role in medical imaging.
Application of Image
Segmentation
 Segmented images are now used routinely in a
multitude of different applications, such as
- the quantification of tissue volumes
- diagnosis
- localization of pathology
- study of anatomical structure
- treatment planning and
- computer integrated surgery etc.
Application
[4]
Application
[5]
Example of Image Segmentation
 Example 1
 Segmentation based on greyscale
 Very simple ‘model’ of greyscale leads to inaccuracies
in object labelling
Example of Image Segmentation
 Example 2
 Segmentation based on texture
 Enables object surfaces with varying patterns of grey to be
segmented
Boundary Extraction example
 Dilation: Dilation is an operation that ‘grows’ or ‘thickens’ objects in
a binary image. Mathematically, dilation is defined in terms of set
operations. The dilation of A and B is defined as
 Erosion: Erosion is an operation that ‘Shrinks’ or ‘thins’ objects in a
binary image. The mathematical definition of erosion of A by B is as
Dilation and Erosion






≠∩=⊕ φABzBA z)(|
^
{ }φ≠∩=Θ C
z ABzBA )(|
Algorithm
 Add pixels to the boundaries of an image.
 Numbers of pixels added from the objetcs in
an image depends on the size of the
structuring Element.
 Function strel is used to generate the SE s.
Algorithm for Boundary Extraction
 Erosion Algorithm: The boundary of a set A, denoted
by (A)β , can be obtained by first eroding Aby B and
then performing the set differences between Aand its
erosion. That is,
(A)= A– (A B)β Θ
 Dilation Algorithm: The boundary of a set A, denoted
by (A)β , can be obtained by first dilating Aby Band
then performing the set differences between Aand its
dilation. That is,
(A)= (A B) – Aβ ⊕
 Boundary Extraction with the help of Dilation:
A=imread(‘a.jpg');
s=strel('disk',3);%Structuring element
F=imdilate(A,s); %Dialte the image by structuring element
figure,imshow(A);title('Original Image');
figure,imshow(F);title('Imdilate Image');
figure,imshow(F-A);title('Boundary extracted Image with using imdilate');
 Boundary Extraction with the help of Erosion:
A=imread('a.jpg');
s=strel('disk',3); %Structuring element
F=imerode(A,s); %Erode the image by structuring element
figure,imshow(A); title('Original Image');
figure,imshow(A-F); title('Boundary extracted Image with using imerode');
Matlab Practical
Need for Deformable Model
 Due to both the tremendous variability of object shapes and the
variation in image quality, Image Segmentation becomes a difficult
task.
 Problems do arise when medical images are corrupted with noise
and the structure itself is not clearly or completely visible in the
image.
 This may result in detecting erroneous object regions or
boundaries, or failing to detect true ones when applying classical
segmentation techniques such as edge detection and thresholding.
 To address these difficulties, deformable models have been
extensively studied and widely used in medical image
segmentation, with promising results.
What is Deformable Model??
 Deformable models analyze those noisy images and provide a
coherent representation for variable structure shapes.
 Deformable models are curves or surfaces defined within an image
domain that can move under the influence of internal forces and
external forces.
 Internal forces are defined within the curve or surface itself, and are
designed to keep the model smooth during deformation.
 External forces, are computed from the image data and are defined
to move the model toward an object boundary or other desired
features within an image.
What is Deformable Model??
 They are designed to be attracted to external image features
(such as edges) while maintaining internal shape constraints
(such as smoothness).
 By constraining extracted boundaries to be smooth and
incorporating other prior information about the object shape,
Deformable models offer:
- robustness to both image noise and boundary gaps.
 Deformable models allow integrating boundary elements into
a coherent and consistent mathematical description readily
available for subsequent applications.
How Become Popular
 The popularity of deformable model is largely due to the
seminar paper “Snakes:ActiveContours” by Kass,
Witkin, and Terzopoulos.
 Since its publication, deformable models have grown to
be one of the most active and successful research areas
in image segmentation.
Image Segmentation Using
Deformable Models
Fig: Variability of object shapes and imag equality. (a) A 2D MR image of the
heart
left ventricle and (b) a 3D MR image of the brain.
Image Segmentation Using
Deformable Models
Fig: Examples of using deformable models to extract object boundaries frommedical
images. (a) An example of using a deformable contourto extract the innerwall of the
ventricle of a human heart from a 2DMRimage. (b) (b)An example of using
a deformable surface to reconstruct the brain cortical surface froma 3DMRimage
Types of Deformable Model
 There are basically two types of deformable models
depending on how the model is defined in the shape
domain.:
a) parametric deformable models Or active contours,
b) geometric deformable models Or implicit models.
Parametric Deformable Models
 Parametric deformable models or active contours were
first introduced in 1988, by Kass et al., under the name
“snakes” .
 Snakes, use parametric curves to represent the model
shape.
 During their evolution, the deformations are determined
by geometry, kinematics, dynamics etc.
Parametric Deformable Models
 Parametric deformable models represent curves and surfaces
explicitly in their parametric forms during deformation.
 This representation allows direct interaction with the model and can
lead to a compact representation for fast real-time implementation.
 The main advantage of parametric models is that they are usually
very fast in their convergence, depending on the predetermined
number of control points.
 Problem:
Adaptation of the model topology, such as splitting or merging
parts during the deformation, can be difficult using parametric
models i.e it is topology dependent.
Parametric Deformable Models
 Two different types of formulations for parametric
deformable models:
- an energy minimizing formulation and
- a dynamic force formulation.
 The first formulation has the advantage that its solution
satisfies a minimum principle whereas the second
formulation has the flexibility of allowing the use of more
general types of external forces.
Internal Energy of Active
Contours:
 The internal energy of an active contour can
be translated as the summation of forces
applied along the curve to preserve its
smoothness.
 Mathematically
 Where the individual energies eint represent
the local state along the curve, and are
defined as,
External Energy of Active
Contours
 Common active contours use primarily edge
(image gradient) information to derive external
image forces that drive a shape based model.
External energy,
 where is the image Iafter smoothing
with a Gaussian kernel of standard deviation
, and is the image gradient along the curve
C.
Edge Based Active Contour
 Edge Detection is a well-developed field on its
own within image processing. Region
boundaries and edges are closely related,
since there is often a sharp adjustment in
intensity at the region boundaries.
Region Based Active Contour
 This method takes a set of seeds as input
along with the image. The seeds mark each of
the objects to be segmented. 
Geometric Deformable Model
 Geometric deformable models, on the other hand, can
handle topological changes naturally.
 These model is based on the theory of curve evolution
and the level set method.
 These model represent curves and surfaces implicitly as
a level set of a higher-dimensional scalar function.
 Their parameterizations are computed only after
complete deformation, thereby allowing topological
adaptivity to be easily accommodated.
Geometric Deformable Model
 They use a distance transformation to define the shape
from the n-dimensional to an n +1 dimensional domain,
where n=1 for curves, n= 2 for surfaces on the image
plane,etc.
Region Based & Segment Based
 Region-based segmentation: Considers gray-
levels from neighboring pixels , either by
including similar neighboring pixels(region
growing), split-and-merge, or watershed
segmentation.
 • Edge-based segmentation: Detects edge
pixels and links them together to form
contours.
Region vs. edge-based
approaches
 Region based methods are robust because:
– Regions cover more pixels than edges and thus you have
more information available in order to characterize your
region
– When detecting a region you could for instance use texture
which is not easy when dealing with edges
– Region growing techniques are generally better in noisy
images where edges are difficult to detect
• The edge based method can be preferable because:
– Algorithms are usually less complex
– Edges are important features in a image to separate
regions. The edge of a region can often be hard to find
because of noise or occlusions
Conclusion
 In this paper, I have discussed medical image
segmentation methods, particularly
deformable model based methods, learning
based classification methods . Understanding
image content and extracting useful image
features are critical to medical image search
and mining.
Future Research
 We all are in midst of revolution ignited by fast
development in computer technology and
imaging. Against common belief, computers
are not able to match humans in calculation
related to image processing and analysis. But
with increasing sophistication and power of the
modern computing, computation will go
beyond conventional. Parallel and distributed
computing paradigms are anticipated to
improve responses for the image processing
results.
References
 E L. Valve rd, N . Guil, A DEFORMABLE MODEL FOR IMAGE SEGMENTATION IN NOISY
MEDICAL IMAGES,IEEE 2001.
 E L. Valve rd, N. Guil, “A DEFORMABLE MODEL FOR IMAGE SEGMENTATION IN NOISY
MEDICAL IMAGES”,IEEE 2001.
 Xiaolei Huang “Medical Image Segmentation”, University of Miami
 Digital Image Segmentation
http://www.uio.no/studier/emner/matnat/ifi/INF4300/h10/undervisningsmateriale/INF4300-2010-
f03-segmentation.pdf
 Luis Ibfiez , Chafid Hamitouche , Christian Roux,” Structured Deformable Models Application of
Metaballs to 3D Medical Image Segmentation”, , Annual EMBS International Conference
 Lifeng Liu and Stan Sclaroff, “Medical Image Segmentation And Retrieval Via Deformable
Models”, Boston University.
 Blake A, Rother C, Brown M, Perez P, Torr P (2004) Interactive image segmentation using an
adaptive GMMRF model. European Conference on Computer Vision, 2004
 Xian Fan, Pierre-Louis Bazin, John Bogovic, Ying Bai and Jerry L. Prince ,“ A Multiple Geometric
Deformable Model Framework for Homeomorphic 3D Medical Image Segmentation”
International Journal of Advanced Research in Computer Science and Software Engineering.
 
 Chou P, Brown C (1990) The theory and practice of bayesian image labeling. Int J
Comput Vis 4:185–210
 
 Y. S. Akgul and C. Kambhamettu, “A coarse-to-fine deformable contour optimization
framework,” IEEE Trans. o n Patte rn Analysis and Machine Inte llig e nce , vol. 25, no.
2, pp. 174–186, 2003.
 
 P. Etyngier, F. Segonne, and R. Keriven, “Shape priors using manifold learning
techniques,” in IEEE 1 1 th Int. Co nf. Co m put. Vis. , Oct. 2007,pp. 1–8.
 
 http://www.engineersgarage.com/articles/image-processing-tutorial-applications
 
 http://en.wikipedia.org/wiki/Dilation_(morphology)
 
 http://tanmayonrun.blogspot.in/2011/10/describe-fundamental-steps-of-digital.html
THANK YOU

Contenu connexe

Tendances

Digital Image Processing: Digital Image Fundamentals
Digital Image Processing: Digital Image FundamentalsDigital Image Processing: Digital Image Fundamentals
Digital Image Processing: Digital Image FundamentalsMostafa G. M. Mostafa
 
Lecture 3 image sampling and quantization
Lecture 3 image sampling and quantizationLecture 3 image sampling and quantization
Lecture 3 image sampling and quantizationVARUN KUMAR
 
03 digital image fundamentals DIP
03 digital image fundamentals DIP03 digital image fundamentals DIP
03 digital image fundamentals DIPbabak danyal
 
Image segmentation
Image segmentationImage segmentation
Image segmentationDeepak Kumar
 
Image segmentation
Image segmentation Image segmentation
Image segmentation Amnaakhaan
 
Image noise reduction
Image noise reductionImage noise reduction
Image noise reductionJksuryawanshi
 
Snakes in Images (Active contour tutorial)
Snakes in Images (Active contour tutorial)Snakes in Images (Active contour tutorial)
Snakes in Images (Active contour tutorial)Yan Xu
 
Image segmentation techniques
Image segmentation techniquesImage segmentation techniques
Image segmentation techniquesgmidhubala
 
Lec10: Medical Image Segmentation as an Energy Minimization Problem
Lec10: Medical Image Segmentation as an Energy Minimization ProblemLec10: Medical Image Segmentation as an Energy Minimization Problem
Lec10: Medical Image Segmentation as an Energy Minimization ProblemUlaş Bağcı
 
Lec8: Medical Image Segmentation (II) (Region Growing/Merging)
Lec8: Medical Image Segmentation (II) (Region Growing/Merging)Lec8: Medical Image Segmentation (II) (Region Growing/Merging)
Lec8: Medical Image Segmentation (II) (Region Growing/Merging)Ulaş Bağcı
 
Image sampling and quantization
Image sampling and quantizationImage sampling and quantization
Image sampling and quantizationBCET, Balasore
 
Image segmentation
Image segmentationImage segmentation
Image segmentationKuppusamy P
 
Image Enhancement in Spatial Domain
Image Enhancement in Spatial DomainImage Enhancement in Spatial Domain
Image Enhancement in Spatial DomainA B Shinde
 
Line Detection using Hough transform .pptx
Line Detection using Hough transform .pptxLine Detection using Hough transform .pptx
Line Detection using Hough transform .pptxshubham loni
 
Active contour segmentation
Active contour segmentationActive contour segmentation
Active contour segmentationNishant Jain
 

Tendances (20)

Digital Image Processing: Digital Image Fundamentals
Digital Image Processing: Digital Image FundamentalsDigital Image Processing: Digital Image Fundamentals
Digital Image Processing: Digital Image Fundamentals
 
Lecture 3 image sampling and quantization
Lecture 3 image sampling and quantizationLecture 3 image sampling and quantization
Lecture 3 image sampling and quantization
 
03 digital image fundamentals DIP
03 digital image fundamentals DIP03 digital image fundamentals DIP
03 digital image fundamentals DIP
 
Image segmentation
Image segmentationImage segmentation
Image segmentation
 
Image Segmentation
 Image Segmentation Image Segmentation
Image Segmentation
 
Image segmentation
Image segmentationImage segmentation
Image segmentation
 
Image segmentation
Image segmentation Image segmentation
Image segmentation
 
Image noise reduction
Image noise reductionImage noise reduction
Image noise reduction
 
Snakes in Images (Active contour tutorial)
Snakes in Images (Active contour tutorial)Snakes in Images (Active contour tutorial)
Snakes in Images (Active contour tutorial)
 
Image segmentation techniques
Image segmentation techniquesImage segmentation techniques
Image segmentation techniques
 
Lec10: Medical Image Segmentation as an Energy Minimization Problem
Lec10: Medical Image Segmentation as an Energy Minimization ProblemLec10: Medical Image Segmentation as an Energy Minimization Problem
Lec10: Medical Image Segmentation as an Energy Minimization Problem
 
Lec8: Medical Image Segmentation (II) (Region Growing/Merging)
Lec8: Medical Image Segmentation (II) (Region Growing/Merging)Lec8: Medical Image Segmentation (II) (Region Growing/Merging)
Lec8: Medical Image Segmentation (II) (Region Growing/Merging)
 
Image sampling and quantization
Image sampling and quantizationImage sampling and quantization
Image sampling and quantization
 
Image segmentation
Image segmentationImage segmentation
Image segmentation
 
Canny Edge Detection
Canny Edge DetectionCanny Edge Detection
Canny Edge Detection
 
Image segmentation
Image segmentationImage segmentation
Image segmentation
 
Image Enhancement in Spatial Domain
Image Enhancement in Spatial DomainImage Enhancement in Spatial Domain
Image Enhancement in Spatial Domain
 
Line Detection using Hough transform .pptx
Line Detection using Hough transform .pptxLine Detection using Hough transform .pptx
Line Detection using Hough transform .pptx
 
Active contour segmentation
Active contour segmentationActive contour segmentation
Active contour segmentation
 
Hog
HogHog
Hog
 

En vedette

Comparison of image segmentation
Comparison of image segmentationComparison of image segmentation
Comparison of image segmentationHaitham Ahmed
 
Comparison of Segmentation Algorithms and Estimation of Optimal Segmentation ...
Comparison of Segmentation Algorithms and Estimation of Optimal Segmentation ...Comparison of Segmentation Algorithms and Estimation of Optimal Segmentation ...
Comparison of Segmentation Algorithms and Estimation of Optimal Segmentation ...Pinaki Ranjan Sarkar
 
BRAIN TUMOR MRI IMAGE SEGMENTATION AND DETECTION IN IMAGE PROCESSING
BRAIN TUMOR MRI IMAGE SEGMENTATION AND DETECTION IN IMAGE PROCESSINGBRAIN TUMOR MRI IMAGE SEGMENTATION AND DETECTION IN IMAGE PROCESSING
BRAIN TUMOR MRI IMAGE SEGMENTATION AND DETECTION IN IMAGE PROCESSINGDharshika Shreeganesh
 
Digital Image Processing: Image Segmentation
Digital Image Processing: Image SegmentationDigital Image Processing: Image Segmentation
Digital Image Processing: Image SegmentationMostafa G. M. Mostafa
 
Getting started with Matlab by Hannah Dotson, Vikram Kodibagkar laboratory
Getting started with Matlab by Hannah Dotson, Vikram Kodibagkar laboratoryGetting started with Matlab by Hannah Dotson, Vikram Kodibagkar laboratory
Getting started with Matlab by Hannah Dotson, Vikram Kodibagkar laboratorySairam Geethanath
 
Marker Controlled Segmentation Technique for Medical application
Marker Controlled Segmentation Technique for Medical applicationMarker Controlled Segmentation Technique for Medical application
Marker Controlled Segmentation Technique for Medical applicationRushin Shah
 
Object Based Image Analysis
Object Based Image Analysis Object Based Image Analysis
Object Based Image Analysis Kabir Uddin
 
Enhancement in spatial domain
Enhancement in spatial domainEnhancement in spatial domain
Enhancement in spatial domainAshish Kumar
 
License Plate Recognition System
License Plate Recognition System License Plate Recognition System
License Plate Recognition System Hira Rizvi
 
Image processing fundamentals
Image processing fundamentalsImage processing fundamentals
Image processing fundamentalsA B Shinde
 
Image enhancement techniques
Image enhancement techniquesImage enhancement techniques
Image enhancement techniquesSaideep
 
Image segmentation ppt
Image segmentation pptImage segmentation ppt
Image segmentation pptGichelle Amon
 
Digital Image Processing Fundamental
Digital Image Processing FundamentalDigital Image Processing Fundamental
Digital Image Processing FundamentalThuong Nguyen Canh
 
Introduction to digital image processing
Introduction to digital image processingIntroduction to digital image processing
Introduction to digital image processingHossain Md Shakhawat
 
Digital Image Processing
Digital Image ProcessingDigital Image Processing
Digital Image ProcessingSahil Biswas
 

En vedette (20)

IMAGE SEGMENTATION.
IMAGE SEGMENTATION.IMAGE SEGMENTATION.
IMAGE SEGMENTATION.
 
Comparison of image segmentation
Comparison of image segmentationComparison of image segmentation
Comparison of image segmentation
 
Comparison of Segmentation Algorithms and Estimation of Optimal Segmentation ...
Comparison of Segmentation Algorithms and Estimation of Optimal Segmentation ...Comparison of Segmentation Algorithms and Estimation of Optimal Segmentation ...
Comparison of Segmentation Algorithms and Estimation of Optimal Segmentation ...
 
BRAIN TUMOR MRI IMAGE SEGMENTATION AND DETECTION IN IMAGE PROCESSING
BRAIN TUMOR MRI IMAGE SEGMENTATION AND DETECTION IN IMAGE PROCESSINGBRAIN TUMOR MRI IMAGE SEGMENTATION AND DETECTION IN IMAGE PROCESSING
BRAIN TUMOR MRI IMAGE SEGMENTATION AND DETECTION IN IMAGE PROCESSING
 
Digital Image Processing: Image Segmentation
Digital Image Processing: Image SegmentationDigital Image Processing: Image Segmentation
Digital Image Processing: Image Segmentation
 
Getting started with Matlab by Hannah Dotson, Vikram Kodibagkar laboratory
Getting started with Matlab by Hannah Dotson, Vikram Kodibagkar laboratoryGetting started with Matlab by Hannah Dotson, Vikram Kodibagkar laboratory
Getting started with Matlab by Hannah Dotson, Vikram Kodibagkar laboratory
 
Cyber-savvy Cyber-safety
Cyber-savvy Cyber-safety Cyber-savvy Cyber-safety
Cyber-savvy Cyber-safety
 
Segmentation Techniques -II
Segmentation Techniques -IISegmentation Techniques -II
Segmentation Techniques -II
 
Marker Controlled Segmentation Technique for Medical application
Marker Controlled Segmentation Technique for Medical applicationMarker Controlled Segmentation Technique for Medical application
Marker Controlled Segmentation Technique for Medical application
 
Image segmentation
Image segmentation Image segmentation
Image segmentation
 
Object Based Image Analysis
Object Based Image Analysis Object Based Image Analysis
Object Based Image Analysis
 
Enhancement in spatial domain
Enhancement in spatial domainEnhancement in spatial domain
Enhancement in spatial domain
 
License Plate Recognition System
License Plate Recognition System License Plate Recognition System
License Plate Recognition System
 
Image processing fundamentals
Image processing fundamentalsImage processing fundamentals
Image processing fundamentals
 
Image enhancement techniques
Image enhancement techniquesImage enhancement techniques
Image enhancement techniques
 
Image segmentation ppt
Image segmentation pptImage segmentation ppt
Image segmentation ppt
 
Digital Image Processing Fundamental
Digital Image Processing FundamentalDigital Image Processing Fundamental
Digital Image Processing Fundamental
 
Introduction to digital image processing
Introduction to digital image processingIntroduction to digital image processing
Introduction to digital image processing
 
Image processing ppt
Image processing pptImage processing ppt
Image processing ppt
 
Digital Image Processing
Digital Image ProcessingDigital Image Processing
Digital Image Processing
 

Similaire à Presentation on deformable model for medical image segmentation

Medical image segmentation by
Medical image segmentation byMedical image segmentation by
Medical image segmentation bycsandit
 
Medical Image Segmentation by Transferring Ground Truth Segmentation Based up...
Medical Image Segmentation by Transferring Ground Truth Segmentation Based up...Medical Image Segmentation by Transferring Ground Truth Segmentation Based up...
Medical Image Segmentation by Transferring Ground Truth Segmentation Based up...csandit
 
Feature Extraction of an Image by Using Adaptive Filtering and Morpological S...
Feature Extraction of an Image by Using Adaptive Filtering and Morpological S...Feature Extraction of an Image by Using Adaptive Filtering and Morpological S...
Feature Extraction of an Image by Using Adaptive Filtering and Morpological S...IOSR Journals
 
Vision based non-invasive tool for facial swelling assessment
Vision based non-invasive tool for facial swelling assessment Vision based non-invasive tool for facial swelling assessment
Vision based non-invasive tool for facial swelling assessment University of Moratuwa
 
General Review Of Algorithms Presented For Image Segmentation
General Review Of Algorithms Presented For Image SegmentationGeneral Review Of Algorithms Presented For Image Segmentation
General Review Of Algorithms Presented For Image SegmentationMelissa Moore
 
A03501001006
A03501001006A03501001006
A03501001006theijes
 
MRIIMAGE SEGMENTATION USING LEVEL SET METHOD AND IMPLEMENT AN MEDICAL DIAGNOS...
MRIIMAGE SEGMENTATION USING LEVEL SET METHOD AND IMPLEMENT AN MEDICAL DIAGNOS...MRIIMAGE SEGMENTATION USING LEVEL SET METHOD AND IMPLEMENT AN MEDICAL DIAGNOS...
MRIIMAGE SEGMENTATION USING LEVEL SET METHOD AND IMPLEMENT AN MEDICAL DIAGNOS...cseij
 
MRI Image Segmentation Using Level Set Method and Implement an Medical Diagno...
MRI Image Segmentation Using Level Set Method and Implement an Medical Diagno...MRI Image Segmentation Using Level Set Method and Implement an Medical Diagno...
MRI Image Segmentation Using Level Set Method and Implement an Medical Diagno...CSEIJJournal
 
Intelligent computing techniques on medical image segmentation and analysis a...
Intelligent computing techniques on medical image segmentation and analysis a...Intelligent computing techniques on medical image segmentation and analysis a...
Intelligent computing techniques on medical image segmentation and analysis a...eSAT Publishing House
 
A Review on Image Segmentation using Clustering and Swarm Optimization Techni...
A Review on Image Segmentation using Clustering and Swarm Optimization Techni...A Review on Image Segmentation using Clustering and Swarm Optimization Techni...
A Review on Image Segmentation using Clustering and Swarm Optimization Techni...IJSRD
 
A Dualistic Sub-Image Histogram Equalization Based Enhancement and Segmentati...
A Dualistic Sub-Image Histogram Equalization Based Enhancement and Segmentati...A Dualistic Sub-Image Histogram Equalization Based Enhancement and Segmentati...
A Dualistic Sub-Image Histogram Equalization Based Enhancement and Segmentati...inventy
 
An application of morphological
An application of morphologicalAn application of morphological
An application of morphologicalNaresh Chilamakuri
 
Brain Tumor Classification using Support Vector Machine
Brain Tumor Classification using Support Vector MachineBrain Tumor Classification using Support Vector Machine
Brain Tumor Classification using Support Vector MachineIRJET Journal
 
braintumordetectionusingimagesegmentationppt-210830184640 (1).pdf
braintumordetectionusingimagesegmentationppt-210830184640 (1).pdfbraintumordetectionusingimagesegmentationppt-210830184640 (1).pdf
braintumordetectionusingimagesegmentationppt-210830184640 (1).pdfSunnyYadav735981
 
braintumordetectionusingimagesegmentationppt-210830184640.pdf
braintumordetectionusingimagesegmentationppt-210830184640.pdfbraintumordetectionusingimagesegmentationppt-210830184640.pdf
braintumordetectionusingimagesegmentationppt-210830184640.pdfAlHussieniAbdulAziz
 
braintumordetectionusingimagesegmentationppt-210830184640.pdf
braintumordetectionusingimagesegmentationppt-210830184640.pdfbraintumordetectionusingimagesegmentationppt-210830184640.pdf
braintumordetectionusingimagesegmentationppt-210830184640.pdfAlHussieniAbdulAziz
 
Brain tumor detection using image segmentation ppt
Brain tumor detection using image segmentation pptBrain tumor detection using image segmentation ppt
Brain tumor detection using image segmentation pptRoshini Vijayakumar
 
Medical Image Segmentation Based on Level Set Method
Medical Image Segmentation Based on Level Set MethodMedical Image Segmentation Based on Level Set Method
Medical Image Segmentation Based on Level Set MethodIOSR Journals
 

Similaire à Presentation on deformable model for medical image segmentation (20)

Medical image segmentation by
Medical image segmentation byMedical image segmentation by
Medical image segmentation by
 
Medical Image Segmentation by Transferring Ground Truth Segmentation Based up...
Medical Image Segmentation by Transferring Ground Truth Segmentation Based up...Medical Image Segmentation by Transferring Ground Truth Segmentation Based up...
Medical Image Segmentation by Transferring Ground Truth Segmentation Based up...
 
Feature Extraction of an Image by Using Adaptive Filtering and Morpological S...
Feature Extraction of an Image by Using Adaptive Filtering and Morpological S...Feature Extraction of an Image by Using Adaptive Filtering and Morpological S...
Feature Extraction of an Image by Using Adaptive Filtering and Morpological S...
 
Vision based non-invasive tool for facial swelling assessment
Vision based non-invasive tool for facial swelling assessment Vision based non-invasive tool for facial swelling assessment
Vision based non-invasive tool for facial swelling assessment
 
General Review Of Algorithms Presented For Image Segmentation
General Review Of Algorithms Presented For Image SegmentationGeneral Review Of Algorithms Presented For Image Segmentation
General Review Of Algorithms Presented For Image Segmentation
 
A03501001006
A03501001006A03501001006
A03501001006
 
MRIIMAGE SEGMENTATION USING LEVEL SET METHOD AND IMPLEMENT AN MEDICAL DIAGNOS...
MRIIMAGE SEGMENTATION USING LEVEL SET METHOD AND IMPLEMENT AN MEDICAL DIAGNOS...MRIIMAGE SEGMENTATION USING LEVEL SET METHOD AND IMPLEMENT AN MEDICAL DIAGNOS...
MRIIMAGE SEGMENTATION USING LEVEL SET METHOD AND IMPLEMENT AN MEDICAL DIAGNOS...
 
MRI Image Segmentation Using Level Set Method and Implement an Medical Diagno...
MRI Image Segmentation Using Level Set Method and Implement an Medical Diagno...MRI Image Segmentation Using Level Set Method and Implement an Medical Diagno...
MRI Image Segmentation Using Level Set Method and Implement an Medical Diagno...
 
Intelligent computing techniques on medical image segmentation and analysis a...
Intelligent computing techniques on medical image segmentation and analysis a...Intelligent computing techniques on medical image segmentation and analysis a...
Intelligent computing techniques on medical image segmentation and analysis a...
 
A Review on Image Segmentation using Clustering and Swarm Optimization Techni...
A Review on Image Segmentation using Clustering and Swarm Optimization Techni...A Review on Image Segmentation using Clustering and Swarm Optimization Techni...
A Review on Image Segmentation using Clustering and Swarm Optimization Techni...
 
A Dualistic Sub-Image Histogram Equalization Based Enhancement and Segmentati...
A Dualistic Sub-Image Histogram Equalization Based Enhancement and Segmentati...A Dualistic Sub-Image Histogram Equalization Based Enhancement and Segmentati...
A Dualistic Sub-Image Histogram Equalization Based Enhancement and Segmentati...
 
Image Processing
Image ProcessingImage Processing
Image Processing
 
An application of morphological
An application of morphologicalAn application of morphological
An application of morphological
 
Brain Tumor Classification using Support Vector Machine
Brain Tumor Classification using Support Vector MachineBrain Tumor Classification using Support Vector Machine
Brain Tumor Classification using Support Vector Machine
 
braintumordetectionusingimagesegmentationppt-210830184640 (1).pdf
braintumordetectionusingimagesegmentationppt-210830184640 (1).pdfbraintumordetectionusingimagesegmentationppt-210830184640 (1).pdf
braintumordetectionusingimagesegmentationppt-210830184640 (1).pdf
 
braintumordetectionusingimagesegmentationppt-210830184640.pdf
braintumordetectionusingimagesegmentationppt-210830184640.pdfbraintumordetectionusingimagesegmentationppt-210830184640.pdf
braintumordetectionusingimagesegmentationppt-210830184640.pdf
 
braintumordetectionusingimagesegmentationppt-210830184640.pdf
braintumordetectionusingimagesegmentationppt-210830184640.pdfbraintumordetectionusingimagesegmentationppt-210830184640.pdf
braintumordetectionusingimagesegmentationppt-210830184640.pdf
 
Brain tumor detection using image segmentation ppt
Brain tumor detection using image segmentation pptBrain tumor detection using image segmentation ppt
Brain tumor detection using image segmentation ppt
 
Vol2no2 17
Vol2no2 17Vol2no2 17
Vol2no2 17
 
Medical Image Segmentation Based on Level Set Method
Medical Image Segmentation Based on Level Set MethodMedical Image Segmentation Based on Level Set Method
Medical Image Segmentation Based on Level Set Method
 

Dernier

Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 

Dernier (20)

Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 

Presentation on deformable model for medical image segmentation

  • 1. PRESENTATION ON DEFORMABLE MODEL FOR MEDICAL IMAGE SEGMENTATION Presented By Subhash Basishtha Assam University Silchar
  • 2. Presentation Outline  Introduction to Image Processing  Steps of Image Processing  Types of Image Processing  Introduction to Image Segmentation  Introduction to Medical Image Segmentation  Application of Image Segmentation  Example of Image Segmentation  Need for Deformable Model  What is Deformable Model??  Types of Deformable Model
  • 3. Introduction to Image Processing  Image processing is a method to convert an image into digital form and perform some operations on it, in order to get an enhanced image or to extract some useful information from it.  It is a type of signal dispensation in which input is image, like video frame or photograph and output may be image or characteristics associated with that image.
  • 4. Steps of Image Processing  Importing the image with optical scanner or by digital photography.   Analyzing and manipulating the image which includes data compression and image enhancement and spotting patterns that are not to human eyes like tissue,satellite photographs.    Output is the last stage in which result can be altered image or report that is based on image analysis.
  • 5. Phases of digital image processing [13]
  • 6. Contd..  Image processing Steps are: 1. Image Acquisition 2. Image Enhancement 3. Image Restoration 4. ColorImage Processing 5. Wavelets and Multiresolution Processing 6. Compression 7. Morphological Processing 8. Segmentation 9. Representation and Description 10. Object recognition 11. Knowledge Base
  • 7. Purpose The purpose of image processing is divided into 5 groups. They are:  1. Visualization - Observe the objects that are not visible.  2. Image sharpening and restoration - To create a better image.  3. Image retrieval - Seek for the image of interest.  4. Measurement of pattern – Measures various objects in an image.  5. Image Recognition – Distinguish the objects in an image.
  • 8. Types The two types of methods used forImage Processing are Analog and Digital Image Processing.  Analog or visual techniques of image processing can be used for the hard copies like printouts and photographs.  Digital Processing techniques help in manipulation of the digital images by using computers.
  • 9. Introduction to Image Segmentation  The purpose of image segmentation is to partition an image into meaningful regions with respect to a particular application.  The goal of segmentation is to simplify and/or change the representation of an image into something that is more meaningful and easier to analyze  The segmentation is based on measurements taken from the image and might be grey level, colour, texture, depth or motion.  Usually image segmentation is an initial and vital step in a series of processes aimed at overall image understanding.
  • 10. Introduction to Medical Image Segmentation  An important goal of medical image processing is to transform raw images into a numerically symbolic form for better representation, evaluation, and /or content based search and mining.  With the advent of medical image modalities that provide different measures of internal anatomical structure and function, physicians are now able to perform typical clinical tasks such as patient diagnosis and monitoring more safely than before such imaging technologies existed.  Computerized image segmentation has played an increasingly important role in medical imaging.
  • 11. Application of Image Segmentation  Segmented images are now used routinely in a multitude of different applications, such as - the quantification of tissue volumes - diagnosis - localization of pathology - study of anatomical structure - treatment planning and - computer integrated surgery etc.
  • 14. Example of Image Segmentation  Example 1  Segmentation based on greyscale  Very simple ‘model’ of greyscale leads to inaccuracies in object labelling
  • 15. Example of Image Segmentation  Example 2  Segmentation based on texture  Enables object surfaces with varying patterns of grey to be segmented
  • 17.  Dilation: Dilation is an operation that ‘grows’ or ‘thickens’ objects in a binary image. Mathematically, dilation is defined in terms of set operations. The dilation of A and B is defined as  Erosion: Erosion is an operation that ‘Shrinks’ or ‘thins’ objects in a binary image. The mathematical definition of erosion of A by B is as Dilation and Erosion       ≠∩=⊕ φABzBA z)(| ^ { }φ≠∩=Θ C z ABzBA )(|
  • 18. Algorithm  Add pixels to the boundaries of an image.  Numbers of pixels added from the objetcs in an image depends on the size of the structuring Element.  Function strel is used to generate the SE s.
  • 19. Algorithm for Boundary Extraction  Erosion Algorithm: The boundary of a set A, denoted by (A)β , can be obtained by first eroding Aby B and then performing the set differences between Aand its erosion. That is, (A)= A– (A B)β Θ  Dilation Algorithm: The boundary of a set A, denoted by (A)β , can be obtained by first dilating Aby Band then performing the set differences between Aand its dilation. That is, (A)= (A B) – Aβ ⊕
  • 20.  Boundary Extraction with the help of Dilation: A=imread(‘a.jpg'); s=strel('disk',3);%Structuring element F=imdilate(A,s); %Dialte the image by structuring element figure,imshow(A);title('Original Image'); figure,imshow(F);title('Imdilate Image'); figure,imshow(F-A);title('Boundary extracted Image with using imdilate');  Boundary Extraction with the help of Erosion: A=imread('a.jpg'); s=strel('disk',3); %Structuring element F=imerode(A,s); %Erode the image by structuring element figure,imshow(A); title('Original Image'); figure,imshow(A-F); title('Boundary extracted Image with using imerode'); Matlab Practical
  • 21. Need for Deformable Model  Due to both the tremendous variability of object shapes and the variation in image quality, Image Segmentation becomes a difficult task.  Problems do arise when medical images are corrupted with noise and the structure itself is not clearly or completely visible in the image.  This may result in detecting erroneous object regions or boundaries, or failing to detect true ones when applying classical segmentation techniques such as edge detection and thresholding.  To address these difficulties, deformable models have been extensively studied and widely used in medical image segmentation, with promising results.
  • 22. What is Deformable Model??  Deformable models analyze those noisy images and provide a coherent representation for variable structure shapes.  Deformable models are curves or surfaces defined within an image domain that can move under the influence of internal forces and external forces.  Internal forces are defined within the curve or surface itself, and are designed to keep the model smooth during deformation.  External forces, are computed from the image data and are defined to move the model toward an object boundary or other desired features within an image.
  • 23. What is Deformable Model??  They are designed to be attracted to external image features (such as edges) while maintaining internal shape constraints (such as smoothness).  By constraining extracted boundaries to be smooth and incorporating other prior information about the object shape, Deformable models offer: - robustness to both image noise and boundary gaps.  Deformable models allow integrating boundary elements into a coherent and consistent mathematical description readily available for subsequent applications.
  • 24. How Become Popular  The popularity of deformable model is largely due to the seminar paper “Snakes:ActiveContours” by Kass, Witkin, and Terzopoulos.  Since its publication, deformable models have grown to be one of the most active and successful research areas in image segmentation.
  • 25. Image Segmentation Using Deformable Models Fig: Variability of object shapes and imag equality. (a) A 2D MR image of the heart left ventricle and (b) a 3D MR image of the brain.
  • 26. Image Segmentation Using Deformable Models Fig: Examples of using deformable models to extract object boundaries frommedical images. (a) An example of using a deformable contourto extract the innerwall of the ventricle of a human heart from a 2DMRimage. (b) (b)An example of using a deformable surface to reconstruct the brain cortical surface froma 3DMRimage
  • 27. Types of Deformable Model  There are basically two types of deformable models depending on how the model is defined in the shape domain.: a) parametric deformable models Or active contours, b) geometric deformable models Or implicit models.
  • 28. Parametric Deformable Models  Parametric deformable models or active contours were first introduced in 1988, by Kass et al., under the name “snakes” .  Snakes, use parametric curves to represent the model shape.  During their evolution, the deformations are determined by geometry, kinematics, dynamics etc.
  • 29. Parametric Deformable Models  Parametric deformable models represent curves and surfaces explicitly in their parametric forms during deformation.  This representation allows direct interaction with the model and can lead to a compact representation for fast real-time implementation.  The main advantage of parametric models is that they are usually very fast in their convergence, depending on the predetermined number of control points.  Problem: Adaptation of the model topology, such as splitting or merging parts during the deformation, can be difficult using parametric models i.e it is topology dependent.
  • 30. Parametric Deformable Models  Two different types of formulations for parametric deformable models: - an energy minimizing formulation and - a dynamic force formulation.  The first formulation has the advantage that its solution satisfies a minimum principle whereas the second formulation has the flexibility of allowing the use of more general types of external forces.
  • 31. Internal Energy of Active Contours:  The internal energy of an active contour can be translated as the summation of forces applied along the curve to preserve its smoothness.  Mathematically  Where the individual energies eint represent the local state along the curve, and are defined as,
  • 32. External Energy of Active Contours  Common active contours use primarily edge (image gradient) information to derive external image forces that drive a shape based model. External energy,  where is the image Iafter smoothing with a Gaussian kernel of standard deviation , and is the image gradient along the curve C.
  • 33. Edge Based Active Contour  Edge Detection is a well-developed field on its own within image processing. Region boundaries and edges are closely related, since there is often a sharp adjustment in intensity at the region boundaries.
  • 34. Region Based Active Contour  This method takes a set of seeds as input along with the image. The seeds mark each of the objects to be segmented. 
  • 35. Geometric Deformable Model  Geometric deformable models, on the other hand, can handle topological changes naturally.  These model is based on the theory of curve evolution and the level set method.  These model represent curves and surfaces implicitly as a level set of a higher-dimensional scalar function.  Their parameterizations are computed only after complete deformation, thereby allowing topological adaptivity to be easily accommodated.
  • 36. Geometric Deformable Model  They use a distance transformation to define the shape from the n-dimensional to an n +1 dimensional domain, where n=1 for curves, n= 2 for surfaces on the image plane,etc.
  • 37. Region Based & Segment Based  Region-based segmentation: Considers gray- levels from neighboring pixels , either by including similar neighboring pixels(region growing), split-and-merge, or watershed segmentation.  • Edge-based segmentation: Detects edge pixels and links them together to form contours.
  • 38. Region vs. edge-based approaches  Region based methods are robust because: – Regions cover more pixels than edges and thus you have more information available in order to characterize your region – When detecting a region you could for instance use texture which is not easy when dealing with edges – Region growing techniques are generally better in noisy images where edges are difficult to detect • The edge based method can be preferable because: – Algorithms are usually less complex – Edges are important features in a image to separate regions. The edge of a region can often be hard to find because of noise or occlusions
  • 39. Conclusion  In this paper, I have discussed medical image segmentation methods, particularly deformable model based methods, learning based classification methods . Understanding image content and extracting useful image features are critical to medical image search and mining.
  • 40. Future Research  We all are in midst of revolution ignited by fast development in computer technology and imaging. Against common belief, computers are not able to match humans in calculation related to image processing and analysis. But with increasing sophistication and power of the modern computing, computation will go beyond conventional. Parallel and distributed computing paradigms are anticipated to improve responses for the image processing results.
  • 41. References  E L. Valve rd, N . Guil, A DEFORMABLE MODEL FOR IMAGE SEGMENTATION IN NOISY MEDICAL IMAGES,IEEE 2001.  E L. Valve rd, N. Guil, “A DEFORMABLE MODEL FOR IMAGE SEGMENTATION IN NOISY MEDICAL IMAGES”,IEEE 2001.  Xiaolei Huang “Medical Image Segmentation”, University of Miami  Digital Image Segmentation http://www.uio.no/studier/emner/matnat/ifi/INF4300/h10/undervisningsmateriale/INF4300-2010- f03-segmentation.pdf  Luis Ibfiez , Chafid Hamitouche , Christian Roux,” Structured Deformable Models Application of Metaballs to 3D Medical Image Segmentation”, , Annual EMBS International Conference  Lifeng Liu and Stan Sclaroff, “Medical Image Segmentation And Retrieval Via Deformable Models”, Boston University.  Blake A, Rother C, Brown M, Perez P, Torr P (2004) Interactive image segmentation using an adaptive GMMRF model. European Conference on Computer Vision, 2004  Xian Fan, Pierre-Louis Bazin, John Bogovic, Ying Bai and Jerry L. Prince ,“ A Multiple Geometric Deformable Model Framework for Homeomorphic 3D Medical Image Segmentation” International Journal of Advanced Research in Computer Science and Software Engineering.  
  • 42.  Chou P, Brown C (1990) The theory and practice of bayesian image labeling. Int J Comput Vis 4:185–210    Y. S. Akgul and C. Kambhamettu, “A coarse-to-fine deformable contour optimization framework,” IEEE Trans. o n Patte rn Analysis and Machine Inte llig e nce , vol. 25, no. 2, pp. 174–186, 2003.    P. Etyngier, F. Segonne, and R. Keriven, “Shape priors using manifold learning techniques,” in IEEE 1 1 th Int. Co nf. Co m put. Vis. , Oct. 2007,pp. 1–8.    http://www.engineersgarage.com/articles/image-processing-tutorial-applications    http://en.wikipedia.org/wiki/Dilation_(morphology)    http://tanmayonrun.blogspot.in/2011/10/describe-fundamental-steps-of-digital.html