SlideShare a Scribd company logo
COMPUTING THE GROWTH RATE OF STEM
CELLS USING DIGITAL IMAGE PROCESSING
Batch Members:
M.Pratyusha
C.N.Priyadarshini
R.Sushmidha
Under the guidance of
Mrs.B.Pradeepa,M.E
Senior Assistant Professor
CONTENT:
 ABSTRACT
 INTRODUCTION
 SEGMENTATION
 FEATURE EXTRACTION
 PATTERN RECOGNITION
 REFERENCES
ABSTRACT
The influence and impact of digital image processing on modern society, science,
technology and art are tremendous and incredible. A stem cell considered to be
the undifferentiated biological unit cells is a kind of cell that can duplicate itself
over and over, providing new cells that can turn into cells with a specific
purpose. The stem cell analysis and research through the digital image
processing contributes its strong support to the doctors in the field of stem cell
research to yield the results in computerized technology rather than clinical
method. This kind of research through computerized method reduces the effects
on human body during transplantation and tends to be more time economical.
This project aims at computing the growth rate of stem cells by using
segmentation, feature extraction and pattern recognition which are the
fundamental methods of digital image processing. DRLSE algorithm is applied
for segmenting images. The DRLSE algorithm is an amalgamation of Canny
Edge Detector algorithm and DRLSE method, which uses the four well potential
function. Features are extracted from segmented images using GLCM method
and finally Support Vector Machine (SVM) is used for pattern recognition and
classification of stem cells.
INTRODUCTION
 STEM CELL - DEFINITION
 SOURCES OF STEM CELLS
 POSSIBLE USES OF STEM CELLS
 FLOW CHART
STEM CELL- DEFINITION
 Undifferentiated cells that can differentiate into specialized
cells and divide to produce more stem cells
 Through cell division-form more stem cells
Eg: Bone marrow
 Become specialized cells under critical condition
Eg: Pancreas & Heart
SOURCES OF STEM CELL
 Umbilical cord blood
 Bone marrow
 Peripheral blood
 Human embryos
ADVANTAGES OF STEM CELL
 Replaceable tissues/organs
 Repair of defective cell types
 Delivery of genetic therapies
 Delivery chemotherapeutic agents
FLOW CHART
INPUT IMAGE
(IMAGES FROM TIME LAPSE
VIDEO)
SEGMENTATION
(CANNY & 4 WELL DRLSE)
FEATURE EXTRACTION
(GRAY LEVEL CO
OCCURRENCE MATRIX)
PATTERN RECOGNITION
(SUPPORT VECTOR MACHINE)
CANNY EDGE DETECTOR
 Developed by JOHN F.CANNY in 1986
 Called optimal edge detector – satisfies three criterion:
Low Error Rate
Localized edges
Single edge response
CANNY-ALGORITHM
 Apply Gaussian filter to smooth the image in order to remove
the noise
 Find the intensity gradients of the image
 Apply non-maximum suppression to get rid of spurious
response to edge detection
 Apply double threshold to determine potential edges
 Track edge by hysterises
 In matlab canny is applied by using the keyword
e = edge (I,’canny’);
DRLSE METHOD
 Developed by C. Li, C. Xu, C. Gui, and M. D. Fox
 It uses edge-based active contour method to drive level set
function in the desired
FOUR WELL POTENTIAL FUNCTION
 The four well potential function is aimed to maintain the
signed distance property.
 The four well potential is used to increase the quality of
segmented image and get better accuracy.
EVALUATION OF SEGMENTATION
The evaluation of segmentation is carried out using the following
parameters:
 PSNR
 BDE
 PRECISION
 RECALL
PSNR
PSNR = 10.𝑙𝑜𝑔10
𝑁∗2552
𝑖 𝑗 𝐸 𝑖𝑗−𝑂 𝑖𝑗
2
Where N=SIZE OF IMAGE
O= ORIGINAL IMAGE
E= SEGMENTED IMAGE
MSE =
1
𝑁 𝑖 𝑗 𝐸𝑖𝑗 − 𝑂𝑖𝑗
2
where
N = SIZE OF IMAGE
O= ORIGINAL IMAGE
E= SEGMENTED IMAGE
PRECISION & RECALL
 PRECISION:
=
𝑡𝑝
𝑡𝑝+𝑓𝑝
 RECALL:
=
𝑡𝑝
𝑡𝑝+𝑓𝑛
Where
tp = intersection of segmented parts and ground truth
fp= segmented parts not overlapping ground truth
fn = missed parts of the ground truth
BOUNDARY DISPLACEMENT ERROR
The Boundary Displacement Error (BDE) measures the
average displacement error of one boundary pixels and the
closest boundary pixels in the other segmentation.
𝜇 𝐿𝐴( 𝑢, 𝑣)= u-v/L-1 for 0<u-v<L
0 for u-v<0
16
COMPARISON OF CASE 1 AND CASE 2
13.6
13.8
14
14.2
14.4
14.6
14.8
15
0 hours 8 hours 16 hours 24 hours 32 hours 40 hours 48 hours 56 hours
BDE
WITH CANNY
WITHOUT CANNY
INPUT IMAGES
EDGE DETECTOR OUTPUT
SEGMENTED IMAGE
Segmented imageSegmented image
Segmented image
Segmented image
Segmented imageSegmented image
Segmented imageSegmented image
EVALUATION OF SEGMENTATION
FEATURE EXTRACTION
 Feature extraction is a special form of dimensionality
reduction
 GLCM is a well-established statistical method for feature
extraction
Computing the co-occurrence matrix
Calculating feature based on the co-occurrence matrix
GLCM
 In 1973, Haralick introduced the co-occurrence matrix and
texture features
 Matrix is square with dimension Ng, where Ng is the number
of gray levels in the image
 Features used are Auto correlation, contrast, dissimilarity,
homogeneity, energy and entropy
COMPUTING THE GROWTH RATE OF STEM CELLS USING DIGITAL IMAGE PROCESSING
PROPERTIES OF GLCM
 CONTRAST= 𝑛=0
𝑁 𝑔
𝑛2 𝑖 − 𝑗 = 𝑛𝑝 𝑑(𝑖, 𝑗)
 CORRELATION=
𝑖=1
𝑁 𝑔
𝑗=1
𝑁 𝑔
(𝑖−𝜇 𝑖)𝑝 𝑑 (𝑖,𝑗)
𝜎 𝑖,𝜎 𝑗
 HOMOGENITY =
𝑖=1
𝑁 𝑔
𝑗=1
𝑁 𝑔
𝑝 𝑑 (𝑖,𝑗)
1+|𝑖−𝑗}
 ENERGY= 𝑖=1
𝑁 𝑔
𝑗=1
𝑁 𝑔
𝑝 𝑑
2
(𝑖, 𝑗)
 ENTROPY= 𝑖=1
𝑁 𝑔
𝑗=1
𝑁 𝑔
𝑝 𝑑(𝑖, 𝑗) log 𝑝 𝑑(𝑖, 𝑗)
FEATURE EXTRACTION OUTPUT
FEATURES IMAG
E 1
IMAG
E 2
IMAG
E 3
IMAG
E 4
IMAG
E 5
IMAG
E 6
IMAG
E 7
IMAG
E 8
AUTO
CORRELATI
ON
1.1833 1.2014 1.218
1
1.2705 1.3191 1.3701 1.3668 1.3880
CONTRAST 2.4170 2.8029 2.638
1
2.9597 2.6180 4.0452 49899 5.5527
ENTROPY 3.3671 3.4131 3.760
6
4.3084 4.5614 5.3890 56441 5.9454
ENERGY 8.5460 8.4835 8.319
8
7.9916 7.7754 7.3479 7.2549 7.8074
DISSIMLARI
TY
2.4170 2.8029 2.638
1
2.9597 2.6180 4.0452 4.9899 5.5527
HOMOGENI
TY
9.8791 9.8958 9.868
0
9.8520 9.8690 9.7977 9.7505 9.7223
PATTERN RECOGNITION
 Pattern recognition is the process of classifying input data into
objects or classes based on key features
 SVMs introduced in COLT-92 by Boser, Guyon & Vapnik
SUPPORT VECTOR MACHINE
GROWTH RATE & ACCURACY
 Growth rate =
[log2(𝑁 𝑛+1− 𝑁 𝑛)]
(𝐷 𝑛+1− 𝐷 𝑛)
 Accuracy = (t/n)*100
GROWTH RATE & ACCURACY TABULATION
INPUT GROWTH RATE ACCURACY %
IMAGE 1 20481 33.65
IMAGE 2 36295 33.65
IMAGE 3 46419 44.44
IMAGE 4 22004 45.81
IMAGE 5 55562 53.92
IMAGE 6 55492 51.21
IMAGE 7 55688 47.31
IMAGE 8 27055 56.70
REFERENCES
[1] Nuseiba M.Altarawneh,Suhuai Luo,Brian Regan and
Changming Sun, ”A Modified Distance Regularized Level Set
Model for Liver Segmentation from CT Images,” Signal & Image
Processing : An International Journal(SIPIJ), vol.6,No.1,February
2015.
[2] Arathi J.Vyavahare, “Canny based DRLSE Algorithm for
Segmentation,” International Journal of Computer Applications,
vol.102-No.7,September 2014.
[3] C.Xu,d.l.pham,and j.1.prince,”Medical Image Segmentation
Using Deformable Models,” in SPIE Handbook on Medical
Imaging vol.3,J.M.Fitzpatrick and M.Sonka,Eds.,ed,2000,pp.129-
174.
CONTD…..
[4] Punam Thakare,”A Study of Image Segmentation and Edge
Detection Techniques,” International Journal on Computer
Science and Engineering,vol 3, no.2 89-904,2011.
[5] Chuming Li,Chenyang Xu,”Distance Regularized Level Set
Evolution and its Application to Image Segmentation”, IEEE
Trans on Image Processing,vol 19,no 12,December 2012.
[6] Jiafu Jiang , He Wei , Qi Qi ,” Medical Image Segmentation
Based on Biomimetic Pattern Recognition”, World Congress on
Software Engineering,IEEE Computer Society. Vol:2,Pp.375-
379,2009.
THANK YOU

More Related Content

PPTX
Automated Image Analysis Method to Quantify Neuronal Response to Intracortica...
PDF
Smart Noise Cancellation Processing: New Level of Clarity in Digital Radiography
PDF
Whitepaper: Image Quality Impact of SmartGrid Processing in Bedside Chest Ima...
PPT
Adequate and Precise Evaluation of Predictive Models in Software Engineering ...
PDF
An adaptive threshold segmentation for detection of nuclei in cervical cells ...
PDF
AN ANN BASED BRAIN ABNORMALITY DETECTION USING MR IMAGES
PPT
Automatic MRI brain segmentation using local features, Self-Organizing Maps, ...
PPTX
PPT on BRAIN TUMOR detection in MRI images based on IMAGE SEGMENTATION
Automated Image Analysis Method to Quantify Neuronal Response to Intracortica...
Smart Noise Cancellation Processing: New Level of Clarity in Digital Radiography
Whitepaper: Image Quality Impact of SmartGrid Processing in Bedside Chest Ima...
Adequate and Precise Evaluation of Predictive Models in Software Engineering ...
An adaptive threshold segmentation for detection of nuclei in cervical cells ...
AN ANN BASED BRAIN ABNORMALITY DETECTION USING MR IMAGES
Automatic MRI brain segmentation using local features, Self-Organizing Maps, ...
PPT on BRAIN TUMOR detection in MRI images based on IMAGE SEGMENTATION

What's hot (18)

PPTX
CT Scan Synthesis | Tejas Prabhune
PDF
Comparitive study of brain tumor detection using morphological operators
PDF
Automated brain tumor detection and segmentation from mri images using adapti...
PDF
Brain tumor detection and segmentation using watershed segmentation and morph...
PPTX
Brain tissue segmentation from MR images
PDF
SVM Classification of MRI Brain Images for ComputerAssisted Diagnosis
PDF
Brain tumour segmentation based on local independent projection based classif...
PDF
Brain tumor mri image segmentation and detection
PDF
Ap4301221223
PDF
THE EFFECT OF PHYSICAL BASED FEATURES FOR RECOGNITION OF RECAPTURED IMAGES
PDF
twofold processing for denoising ultrasound medical images
PDF
IRJET- Novel Approach for Detection of Brain Tumor :A Review
PDF
Time-resolved biomedical sensing through scattering medium
PDF
Mri brain tumour detection by histogram and segmentation
PPTX
Alzheimer's disease classification using Deep learning Neural a Network and G...
PDF
Co33548550
PPTX
BRAIN TUMOR MRI IMAGE SEGMENTATION AND DETECTION IN IMAGE PROCESSING
PDF
A COMPARATIVE STUDY ALGORITHM FOR NOISY IMAGE RESTORATION IN THE FIELD OF MED...
CT Scan Synthesis | Tejas Prabhune
Comparitive study of brain tumor detection using morphological operators
Automated brain tumor detection and segmentation from mri images using adapti...
Brain tumor detection and segmentation using watershed segmentation and morph...
Brain tissue segmentation from MR images
SVM Classification of MRI Brain Images for ComputerAssisted Diagnosis
Brain tumour segmentation based on local independent projection based classif...
Brain tumor mri image segmentation and detection
Ap4301221223
THE EFFECT OF PHYSICAL BASED FEATURES FOR RECOGNITION OF RECAPTURED IMAGES
twofold processing for denoising ultrasound medical images
IRJET- Novel Approach for Detection of Brain Tumor :A Review
Time-resolved biomedical sensing through scattering medium
Mri brain tumour detection by histogram and segmentation
Alzheimer's disease classification using Deep learning Neural a Network and G...
Co33548550
BRAIN TUMOR MRI IMAGE SEGMENTATION AND DETECTION IN IMAGE PROCESSING
A COMPARATIVE STUDY ALGORITHM FOR NOISY IMAGE RESTORATION IN THE FIELD OF MED...
Ad

Similar to COMPUTING THE GROWTH RATE OF STEM CELLS USING DIGITAL IMAGE PROCESSING (20)

PDF
Retinal Vessel Segmentation using Infinite Perimeter Active Contour with Hybr...
PDF
Welcome to International Journal of Engineering Research and Development (IJERD)
PDF
IRJET - Plant Leaf Disease Diagnosis from Color Imagery using Co-Occurrence M...
PDF
IRJET- Plant Leaf Disease Diagnosis from Color Imagery using Co-Occurrence Ma...
PPTX
BRAINREGION.pptx
PDF
IRJET- Retinal Fundus Image Segmentation using Watershed Algorithm
PDF
Towards fine-precision automated immobilization in maskless radiosurgery
PDF
Brain Tumor Detection and Classification Using MRI Brain Images
PDF
A Proposed Framework to De-noise Medical Images Based on Convolution Neural N...
PDF
IRJET- An Efficient Brain Tumor Detection System using Automatic Segmenta...
PDF
DIRECTIONAL CLASSIFICATION OF BRAIN TUMOR IMAGES FROM MRI USING CNN-BASED DEE...
PDF
[IJET-V2I2P10] Authors:M. Dhivya, P. Jenifer, D. C. Joy Winnie Wise, N. Rajap...
PDF
AN ADAPTIVE THRESHOLD SEGMENTATION FOR DETECTION OF NUCLEI IN CERVICAL CELLS ...
PDF
Ccids 2019 cutting edges of ai technology in medicine
PDF
PDF
Detection of Macular Edema by using Various Techniques of Feature Extraction ...
PDF
A Survey on Retinal Area Detector From Scanning Laser Ophthalmoscope (SLO) Im...
PDF
IRJET- Automated Dengue Detection
PDF
IMAGE SEGMENTATION USING FCM ALGORITM | J4RV3I12021
PDF
IRJET- Blood Vessel Segmentation & Analysis in Retinal Images using Image Pro...
Retinal Vessel Segmentation using Infinite Perimeter Active Contour with Hybr...
Welcome to International Journal of Engineering Research and Development (IJERD)
IRJET - Plant Leaf Disease Diagnosis from Color Imagery using Co-Occurrence M...
IRJET- Plant Leaf Disease Diagnosis from Color Imagery using Co-Occurrence Ma...
BRAINREGION.pptx
IRJET- Retinal Fundus Image Segmentation using Watershed Algorithm
Towards fine-precision automated immobilization in maskless radiosurgery
Brain Tumor Detection and Classification Using MRI Brain Images
A Proposed Framework to De-noise Medical Images Based on Convolution Neural N...
IRJET- An Efficient Brain Tumor Detection System using Automatic Segmenta...
DIRECTIONAL CLASSIFICATION OF BRAIN TUMOR IMAGES FROM MRI USING CNN-BASED DEE...
[IJET-V2I2P10] Authors:M. Dhivya, P. Jenifer, D. C. Joy Winnie Wise, N. Rajap...
AN ADAPTIVE THRESHOLD SEGMENTATION FOR DETECTION OF NUCLEI IN CERVICAL CELLS ...
Ccids 2019 cutting edges of ai technology in medicine
Detection of Macular Edema by using Various Techniques of Feature Extraction ...
A Survey on Retinal Area Detector From Scanning Laser Ophthalmoscope (SLO) Im...
IRJET- Automated Dengue Detection
IMAGE SEGMENTATION USING FCM ALGORITM | J4RV3I12021
IRJET- Blood Vessel Segmentation & Analysis in Retinal Images using Image Pro...
Ad

More from Pratyusha Mahavadi (7)

PPTX
ELECTROMAGNETIC EMISSION AND SUSCEPTIBILITY STANDARDS AND SPECIFICATIONS,MIL ...
PPTX
PPTX
Piezo Resistive Pressure Sensor & Case Study of MAP Sensor
PPTX
System Model and Power Penalty
PPTX
Bioprinting
PPTX
Brain gate- thoughts into actions
PPTX
An Efficient Operator Based Unicode Cryptography Algorithm For Text, Audio An...
ELECTROMAGNETIC EMISSION AND SUSCEPTIBILITY STANDARDS AND SPECIFICATIONS,MIL ...
Piezo Resistive Pressure Sensor & Case Study of MAP Sensor
System Model and Power Penalty
Bioprinting
Brain gate- thoughts into actions
An Efficient Operator Based Unicode Cryptography Algorithm For Text, Audio An...

Recently uploaded (20)

PDF
Unit I ESSENTIAL OF DIGITAL MARKETING.pdf
PDF
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
PPT
introduction to datamining and warehousing
PPTX
Artificial Intelligence
PDF
R24 SURVEYING LAB MANUAL for civil enggi
PDF
III.4.1.2_The_Space_Environment.p pdffdf
PPT
Introduction, IoT Design Methodology, Case Study on IoT System for Weather Mo...
PPTX
Information Storage and Retrieval Techniques Unit III
PDF
COURSE DESCRIPTOR OF SURVEYING R24 SYLLABUS
PDF
UNIT no 1 INTRODUCTION TO DBMS NOTES.pdf
PPTX
6ME3A-Unit-II-Sensors and Actuators_Handouts.pptx
PPT
A5_DistSysCh1.ppt_INTRODUCTION TO DISTRIBUTED SYSTEMS
PDF
Categorization of Factors Affecting Classification Algorithms Selection
PDF
PPT on Performance Review to get promotions
PPTX
UNIT 4 Total Quality Management .pptx
PDF
null (2) bgfbg bfgb bfgb fbfg bfbgf b.pdf
PPT
Occupational Health and Safety Management System
PPT
Total quality management ppt for engineering students
PDF
BIO-INSPIRED ARCHITECTURE FOR PARSIMONIOUS CONVERSATIONAL INTELLIGENCE : THE ...
PPTX
Fundamentals of Mechanical Engineering.pptx
Unit I ESSENTIAL OF DIGITAL MARKETING.pdf
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
introduction to datamining and warehousing
Artificial Intelligence
R24 SURVEYING LAB MANUAL for civil enggi
III.4.1.2_The_Space_Environment.p pdffdf
Introduction, IoT Design Methodology, Case Study on IoT System for Weather Mo...
Information Storage and Retrieval Techniques Unit III
COURSE DESCRIPTOR OF SURVEYING R24 SYLLABUS
UNIT no 1 INTRODUCTION TO DBMS NOTES.pdf
6ME3A-Unit-II-Sensors and Actuators_Handouts.pptx
A5_DistSysCh1.ppt_INTRODUCTION TO DISTRIBUTED SYSTEMS
Categorization of Factors Affecting Classification Algorithms Selection
PPT on Performance Review to get promotions
UNIT 4 Total Quality Management .pptx
null (2) bgfbg bfgb bfgb fbfg bfbgf b.pdf
Occupational Health and Safety Management System
Total quality management ppt for engineering students
BIO-INSPIRED ARCHITECTURE FOR PARSIMONIOUS CONVERSATIONAL INTELLIGENCE : THE ...
Fundamentals of Mechanical Engineering.pptx

COMPUTING THE GROWTH RATE OF STEM CELLS USING DIGITAL IMAGE PROCESSING

  • 1. COMPUTING THE GROWTH RATE OF STEM CELLS USING DIGITAL IMAGE PROCESSING Batch Members: M.Pratyusha C.N.Priyadarshini R.Sushmidha Under the guidance of Mrs.B.Pradeepa,M.E Senior Assistant Professor
  • 2. CONTENT:  ABSTRACT  INTRODUCTION  SEGMENTATION  FEATURE EXTRACTION  PATTERN RECOGNITION  REFERENCES
  • 3. ABSTRACT The influence and impact of digital image processing on modern society, science, technology and art are tremendous and incredible. A stem cell considered to be the undifferentiated biological unit cells is a kind of cell that can duplicate itself over and over, providing new cells that can turn into cells with a specific purpose. The stem cell analysis and research through the digital image processing contributes its strong support to the doctors in the field of stem cell research to yield the results in computerized technology rather than clinical method. This kind of research through computerized method reduces the effects on human body during transplantation and tends to be more time economical. This project aims at computing the growth rate of stem cells by using segmentation, feature extraction and pattern recognition which are the fundamental methods of digital image processing. DRLSE algorithm is applied for segmenting images. The DRLSE algorithm is an amalgamation of Canny Edge Detector algorithm and DRLSE method, which uses the four well potential function. Features are extracted from segmented images using GLCM method and finally Support Vector Machine (SVM) is used for pattern recognition and classification of stem cells.
  • 4. INTRODUCTION  STEM CELL - DEFINITION  SOURCES OF STEM CELLS  POSSIBLE USES OF STEM CELLS  FLOW CHART
  • 5. STEM CELL- DEFINITION  Undifferentiated cells that can differentiate into specialized cells and divide to produce more stem cells  Through cell division-form more stem cells Eg: Bone marrow  Become specialized cells under critical condition Eg: Pancreas & Heart
  • 6. SOURCES OF STEM CELL  Umbilical cord blood  Bone marrow  Peripheral blood  Human embryos
  • 7. ADVANTAGES OF STEM CELL  Replaceable tissues/organs  Repair of defective cell types  Delivery of genetic therapies  Delivery chemotherapeutic agents
  • 8. FLOW CHART INPUT IMAGE (IMAGES FROM TIME LAPSE VIDEO) SEGMENTATION (CANNY & 4 WELL DRLSE) FEATURE EXTRACTION (GRAY LEVEL CO OCCURRENCE MATRIX) PATTERN RECOGNITION (SUPPORT VECTOR MACHINE)
  • 9. CANNY EDGE DETECTOR  Developed by JOHN F.CANNY in 1986  Called optimal edge detector – satisfies three criterion: Low Error Rate Localized edges Single edge response
  • 10. CANNY-ALGORITHM  Apply Gaussian filter to smooth the image in order to remove the noise  Find the intensity gradients of the image  Apply non-maximum suppression to get rid of spurious response to edge detection  Apply double threshold to determine potential edges  Track edge by hysterises  In matlab canny is applied by using the keyword e = edge (I,’canny’);
  • 11. DRLSE METHOD  Developed by C. Li, C. Xu, C. Gui, and M. D. Fox  It uses edge-based active contour method to drive level set function in the desired
  • 12. FOUR WELL POTENTIAL FUNCTION  The four well potential function is aimed to maintain the signed distance property.  The four well potential is used to increase the quality of segmented image and get better accuracy.
  • 13. EVALUATION OF SEGMENTATION The evaluation of segmentation is carried out using the following parameters:  PSNR  BDE  PRECISION  RECALL
  • 14. PSNR PSNR = 10.𝑙𝑜𝑔10 𝑁∗2552 𝑖 𝑗 𝐸 𝑖𝑗−𝑂 𝑖𝑗 2 Where N=SIZE OF IMAGE O= ORIGINAL IMAGE E= SEGMENTED IMAGE MSE = 1 𝑁 𝑖 𝑗 𝐸𝑖𝑗 − 𝑂𝑖𝑗 2 where N = SIZE OF IMAGE O= ORIGINAL IMAGE E= SEGMENTED IMAGE
  • 15. PRECISION & RECALL  PRECISION: = 𝑡𝑝 𝑡𝑝+𝑓𝑝  RECALL: = 𝑡𝑝 𝑡𝑝+𝑓𝑛 Where tp = intersection of segmented parts and ground truth fp= segmented parts not overlapping ground truth fn = missed parts of the ground truth
  • 16. BOUNDARY DISPLACEMENT ERROR The Boundary Displacement Error (BDE) measures the average displacement error of one boundary pixels and the closest boundary pixels in the other segmentation. 𝜇 𝐿𝐴( 𝑢, 𝑣)= u-v/L-1 for 0<u-v<L 0 for u-v<0 16
  • 17. COMPARISON OF CASE 1 AND CASE 2 13.6 13.8 14 14.2 14.4 14.6 14.8 15 0 hours 8 hours 16 hours 24 hours 32 hours 40 hours 48 hours 56 hours BDE WITH CANNY WITHOUT CANNY
  • 20. SEGMENTED IMAGE Segmented imageSegmented image Segmented image Segmented image Segmented imageSegmented image Segmented imageSegmented image
  • 22. FEATURE EXTRACTION  Feature extraction is a special form of dimensionality reduction  GLCM is a well-established statistical method for feature extraction Computing the co-occurrence matrix Calculating feature based on the co-occurrence matrix
  • 23. GLCM  In 1973, Haralick introduced the co-occurrence matrix and texture features  Matrix is square with dimension Ng, where Ng is the number of gray levels in the image  Features used are Auto correlation, contrast, dissimilarity, homogeneity, energy and entropy
  • 25. PROPERTIES OF GLCM  CONTRAST= 𝑛=0 𝑁 𝑔 𝑛2 𝑖 − 𝑗 = 𝑛𝑝 𝑑(𝑖, 𝑗)  CORRELATION= 𝑖=1 𝑁 𝑔 𝑗=1 𝑁 𝑔 (𝑖−𝜇 𝑖)𝑝 𝑑 (𝑖,𝑗) 𝜎 𝑖,𝜎 𝑗  HOMOGENITY = 𝑖=1 𝑁 𝑔 𝑗=1 𝑁 𝑔 𝑝 𝑑 (𝑖,𝑗) 1+|𝑖−𝑗}  ENERGY= 𝑖=1 𝑁 𝑔 𝑗=1 𝑁 𝑔 𝑝 𝑑 2 (𝑖, 𝑗)  ENTROPY= 𝑖=1 𝑁 𝑔 𝑗=1 𝑁 𝑔 𝑝 𝑑(𝑖, 𝑗) log 𝑝 𝑑(𝑖, 𝑗)
  • 26. FEATURE EXTRACTION OUTPUT FEATURES IMAG E 1 IMAG E 2 IMAG E 3 IMAG E 4 IMAG E 5 IMAG E 6 IMAG E 7 IMAG E 8 AUTO CORRELATI ON 1.1833 1.2014 1.218 1 1.2705 1.3191 1.3701 1.3668 1.3880 CONTRAST 2.4170 2.8029 2.638 1 2.9597 2.6180 4.0452 49899 5.5527 ENTROPY 3.3671 3.4131 3.760 6 4.3084 4.5614 5.3890 56441 5.9454 ENERGY 8.5460 8.4835 8.319 8 7.9916 7.7754 7.3479 7.2549 7.8074 DISSIMLARI TY 2.4170 2.8029 2.638 1 2.9597 2.6180 4.0452 4.9899 5.5527 HOMOGENI TY 9.8791 9.8958 9.868 0 9.8520 9.8690 9.7977 9.7505 9.7223
  • 27. PATTERN RECOGNITION  Pattern recognition is the process of classifying input data into objects or classes based on key features  SVMs introduced in COLT-92 by Boser, Guyon & Vapnik
  • 29. GROWTH RATE & ACCURACY  Growth rate = [log2(𝑁 𝑛+1− 𝑁 𝑛)] (𝐷 𝑛+1− 𝐷 𝑛)  Accuracy = (t/n)*100
  • 30. GROWTH RATE & ACCURACY TABULATION INPUT GROWTH RATE ACCURACY % IMAGE 1 20481 33.65 IMAGE 2 36295 33.65 IMAGE 3 46419 44.44 IMAGE 4 22004 45.81 IMAGE 5 55562 53.92 IMAGE 6 55492 51.21 IMAGE 7 55688 47.31 IMAGE 8 27055 56.70
  • 31. REFERENCES [1] Nuseiba M.Altarawneh,Suhuai Luo,Brian Regan and Changming Sun, ”A Modified Distance Regularized Level Set Model for Liver Segmentation from CT Images,” Signal & Image Processing : An International Journal(SIPIJ), vol.6,No.1,February 2015. [2] Arathi J.Vyavahare, “Canny based DRLSE Algorithm for Segmentation,” International Journal of Computer Applications, vol.102-No.7,September 2014. [3] C.Xu,d.l.pham,and j.1.prince,”Medical Image Segmentation Using Deformable Models,” in SPIE Handbook on Medical Imaging vol.3,J.M.Fitzpatrick and M.Sonka,Eds.,ed,2000,pp.129- 174.
  • 32. CONTD….. [4] Punam Thakare,”A Study of Image Segmentation and Edge Detection Techniques,” International Journal on Computer Science and Engineering,vol 3, no.2 89-904,2011. [5] Chuming Li,Chenyang Xu,”Distance Regularized Level Set Evolution and its Application to Image Segmentation”, IEEE Trans on Image Processing,vol 19,no 12,December 2012. [6] Jiafu Jiang , He Wei , Qi Qi ,” Medical Image Segmentation Based on Biomimetic Pattern Recognition”, World Congress on Software Engineering,IEEE Computer Society. Vol:2,Pp.375- 379,2009.

Editor's Notes

  • #6: From this we can conclude tht the 2 striking features of stem cells is : self renewal & potency. Based on potency stem cell divided into types…given in slide 4
  • #7: Bone marrow-tissue making blood cells,used whn umbilical sc not present.umbilical-taken from cord after baby born. Peripheral blood-done for BMT,sc separated from blood (donor) & blood returned to patients & sc injected. From aborted tissues sc taken-ethical issues.
  • #10: Edge detection refers to process of identifying & locating sharp discontinuities=abrupt changes in pixel intensity.1.accurate detection of edges(as many as possible),2.dist.b/w edges found by detector & actual edge min,3.no false edge detection
  • #11: 1.Gaussian filter uses simple mask,performed using simple convolution method,larger the width lower is the sensitivity to noise,2.uses 4 dect to compute edges(hori,vertical=sobel; diag=roberts),sobel uses 3*3 mask,mag or edge strength & direction is calculated; 3.edge thinning,in the name itself,comparison of pixel with 1 abve & below or 90,180,135,0; 4.still some noise present,T1 & T2; 5.weak edges=either by noise or from true edge,blob analysis (N8)
  • #12: Advantage:guide the direction of evolving contour
  • #15: Mean square error (MSE) indicates the average difference of the pixels throughout the image. A higher MSE indicates a greater difference between the original and processed image. The PSNR computes the peak signal-to-noise ratio between two images, in decibels. This ratio is often used as a quality measurement between the original and a resultant image. The higher PSNR, the better the quality of the output image. To compute the PSNR , mean-squared error calculated is used
  • #16: precision is the proportion of boundary pixels in the automatic segmentation that correspond to boundary pixels in the ground truth. Precision and recall are attractive as measures of segmentation quality because they are sensitive to over and under-segmentation, over-segmentation leads to low precision scores, while under-segmentation leads to low recall scores. Recall is defined as the proportion of boundary pixels in the ground truth that were successfully detected by the automatic segmentation
  • #23: The main goal of feature extraction is to obtain the most relevant information from the original data and represent that information in a lower dimensionality space. When the input data to an algorithm is too large to be processed and it is suspected to be redundant (e.g. the same measurement in both feet and meters, or the repetitiveness of images presented as pixels), then it can be transformed into a reduced set of features (also named a feature vector). In 1973, Haralick introduced the co-occurrence matrix and texture features which are the most popular second order statistical features today.
  • #24: From the word…it can be said tht it is a matrix. Each element (i, j) in GLCM specifies the number of times that the pixel with value i occurred horizontally adjacent to a pixel with value j .
  • #28: It works really well with clear margin of separation It is effective in high dimensional spaces. It is effective in cases where number of dimensions is greater than the number of samples. It uses a subset of training points in the decision function (called support vectors), so it is also memory efficient.
  • #30: From the word…it can be said tht it is a matrix. Each element (i, j) in GLCM specifies the number of times that the pixel with value i occurred horizontally adjacent to a pixel with value j .
  • #31: Cons: It doesn’t perform well, when we have large data set because the required training time is higher It also doesn’t perform very well, when the data set has more noise i.e. target classes are overlapping SVM doesn’t directly provide probability estimates, these are calculated using an expensive five-fold cross-validation. It is related SVC method of Python scikit-learn library.