SlideShare a Scribd company logo
1 of 4
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 01 | Jan 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 144
Retinal Health Diagnosis using Image Processing
Kamakshi Manchikalapati1, B. Anuradha2
1Department of ECE PG Scholar Sri Venkateswara College of Engineering Tirupati INDIA
2Department of ECE Professor Sri Venkateswara College of Engineering Tirupati INDIA
---------------------------------------------------------------------***----------------------------------------------------------------------
Abstract - Vision is most important aspect of human beings.
The occurrence of ocular diseases is increasing and diseases
like glaucoma, diabetic retinopathy and age-related macular
degeneration are the leading causes of blindness. However
identifying these diseases is time consuming. So the use of an
automatic Computer aided diagnosis system reduce the time
taken for analysis it will also reduce error which is occurred
during subjective analysis in this work we propose one such
method for detection of glaucoma. We had taken 45 normal
and 40 abnormal fundus images. In this work the most
efficient method for detecting glaucoma is Propose. In order
to classify glaucoma Rim to Disc Ratio is considered. Adaptive
image thresholding technique is used to segment disc and
optic cup. Neuro retinal Rim is obtained from segmentedoptic
disc and optic cup which is used for evaluating Rim disc ratio
in order to detect glaucoma. SVM classifier is used to classify
the images as Glaucomatic or healthy. After testing on 20
fundus images our proposed method gives result with an
accuracy of 90%, sensitivity 98% and specificity 80%
Keywords: fundus image, glaucoma, rim to disk ratio,
Adaptive image thresholding, optic disk and optic cup,
Neuro retinal rim, SVM classifier
1. Introduction
Glaucoma is an ocular disorder which leads to
permanent blindnessinhumansbeings.It especiallyoccur in
aged humans beings. As the order is irreversible it is
important to detect in it's early stages. Techniques used by
Ophthalmologist are time consuming so in this paper we
proposed a technique for detecting glaucoma in low time
with the higher accuracy.
2. Proposed Method for Glaucoma Detection
2.1 Pre Processing and filtering
The proposed method for the detectionofglaucoma
employs, RGB fundus image is used as an input. It is filtered
using a noising filter. It removes noise.
In order to detect glaucoma, the most important
region of interest is the optic disk. Therefore, instead of
processing on the whole retinal image, we focus on region
around optic disk and extracted it[3]. This ROI is a minor
image which helps in faster processing and automated
screening of glaucoma. The Block diagram of proposed
method is described in Fig 1
Fig.1: Block Diagram for Glaucoma Detection
2.1.1 Region of Interest
In order to extract ROI first we compute centre of
the optic disc. A window of dimension r*column is created.
Where r is radius of optic disc. Then the window is passed
through the image spatially for all rows and obtaining the
Maxima we find row of the centre of the optic disc. Another
window of dimension r*r is created. Window is passed
through the all columns of detected row. Hence the
coordinates of centre of optic Cup is obtained
2.2 Morphological operations
To decompose an image in visually
homogeneous regions we use a simple and efficient
technique of SLIC. It is based on a spatially localised version
of K means clustering initially wedivideimage intogrid. The
size of the grid is step region. To initialise a correspondingK
means we used the centre of each grid tile. Finally
segmented image yielded by refining the Kmeanscentreand
clusters.
2.3 Feature Extraction
2.3.1 Optic Disc Segmentation
The extracted ROI image consist of three channels
that is red green and blue. To detect optic disc red channel is
used. We preferred red channel because optic disc appear to
be the brightest and blood vesselsarealsosuppressedinthis
channel. Hence it is easier and accuratetosegmentopticdisc
in red channel of input image. Adaptive thresholding
technique is used to segment the optic disc.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 01 | Jan 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 145
2.3.2 Optic Cup segmentation
Optic Cup is segmented using Green channel of
ROI image. Statistical features such as mean standard
deviation of Green channel is calculated.
Mean and standard deviationiscalculatedbyusingfollowing
formulas
X=1/N xi…………………..…….(1)
σ2= 1/N (xi – X) 2
……….(2)
Standard deviation is defined as the square root of variance.
Optic cup and optic disc is segmented by determining the
Threshold level of histogram of each image. From the
statistical patterns of histogram we know that mean is
Central tendency and the standard deviation is the
dispersion from that Central value.
2.3.3 Neuro retinal Rim
Neuro retinal rim is the region located between the
edge of optic disk and optic cup. After segmenting of optic
disk Fig 2.3.3(a) and optic cup Fig 2.3.3(b), Neuro Retinal
Rim is obtained by subtracting optic cup from optic disk.
Neuro Retinal Rim is shown in Fig 2.3.3(c).
(a) (b) (c)
Fig.2.3.3: (a) Segmented optic disk image (b)
Segmented optic cup image (c) Neuro Retinal Rim
image
The change in appearance of this area helps in
identifying damage to the disk due toglaucoma.Thickness of
the rim is an important parameter to detect whether the
fundus image is glaucomatic or not [17][18]. The healthy
optic disk is thicker in inferior portionthaninsuperiorofthe
image. In a glaucomatic eye, optic cup increases in its area
vertically reducing the thickness of the rim in infero -
temporal disk sectors. Consequently rim-disk ratio for
infero-temporal region of the rim can be evaluated to
determine glaucoma.[2]
2.4 Classification
Classification of images as glaucomatic or healthy
can be done based on two parameters 1.Cuptodisc ratioand
2.Rim to disc ratio
2. 4.1 Cup to Disc Ratio
Cup disc ratio is the first parameter weusetodetect
glaucoma. CDR is defined as ratio of total segmented cup
area to segmented disc area.
CDR = Optic Cup Area/Optic Disc Area…..(3)
Cup area and disc area are obtained by summing all the
white pixels in segmented cup and disc. Then CDR is
calculated if this value is greater than 0.3 then the fundus
image is considered as glaucomatic else it is healthy
2.4.2 Rim to Disc Ratio RDR
CDR itself is notsufficientto detectwhethertheeyes
glaucomatic or not. Sometimes patient is diagnosed
inappropriately due to large optic cup in presence of large
optic disc and has healthy Rim tissue. Therefore neuro
retinal rim tissue plays vital role in detection of glaucoma.
RDR is calculated
RDR= Rim area in infero-temporal region/ Disk
Area…….. (4)
RDR is less than or equal to 0.4 then the fundus image is
considered to be normal glaucomatic else healthy. After
calculating these parameters we use these parameters to
train SVM classifier to detect glaucoma.
2.5. SVM Classifier
The Support VectorMachine(SVM)isa populardata
classification technique, which was proposed by Vapnik and
his group at AT&T BELL Laboratories. Generally speaking,
the SVM is a supervised learning method that can analyze
data and recognize patterns. It has been widely used in
human face recognition, handwriting recognition, and
vehicle license the recognition and can outperform other
competing methods in most cases.
The main concept of theSVM istoconstructa hyper-
plane or a set of hyper-planes in a high or infinite
dimensional space, and use them to classify the data. Among
the possible hyper-planes, SVMs select the one where the
distance of the hyper-plane from the closest data point is as
large as possible. The distance between this data point and
the hyper-plane is known as the margin.
Figure.2.5.1 shows the geometric interpretation of
the SVM, the figure on the left presents a large margin
whereas the image on the right displays a small margin. As a
result, the hyper-plane on the left is more desirable than the
one on the right for the purposes of classification.
SVM classifier is trained with previously calculated
parameters of CDR RDR. SVM classifier will bifurcate the
diseased pixel and normal pixel based on the previously
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 01 | Jan 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 146
calculated parameters. Based on that we can detect weather
the person is affected with glaucoma or not.
Fig. 2.5.1 Geometric interpretation of SVM
3. Results
The algorithm has been applied to retinal
images of normal and glaucomatic eyes from open source
data base as well as data from local hospital database the
statistical results of all these cases are shown in Table3.1.
Accuracy Specificity andSensitivityresultsduringtesting are
given in Table 3.2.
Table3.1. Accuracy Specificity Sensitivity results
Table 3.1 statistical results of all cases
4. Conclusions
An efficient method for detecting glaucoma is
proposed in this project. In ordertodetectwhethertheinput
images is glaucomatic or healthy ocular parameters are
calculated. Adaptiveimagethresholdingtechniqueisusedto
segment optic disc and optic cup which makes the proposed
method independent of image quality. Neuro retinal Rim is
obtained from segmented optic disc and optic Cup which is
used to evaluate disc ratio in Infero temporal regions which
helps in screening glaucoma.SVMclassifieris usedtoclassify
fundus images as glaucomatic or healthy. As we are using
SVM we get classification more accurately compared to
previous random tree because in random tree we assign
value of one for diseased pixel and 0 for normal pixel. But
SVM classifier will bifurcate the diseased pixel and normal
pixel based on the values obtained from ocular
parameters calculated previously to train the SVMclassifier.
As we are using SVM we get classification more accurately
compared to previous random tree. When tested on a large
data set of 20 fundus images, the proposed method gives
promising results over 90% accuracy, 98% sensitivity and
80% specificity.
Future work may involve extracting more
parameters in fundus image which reflects glaucoma
symptoms such as disk hemorrhage, focal notching,
peripappilary atrophy, ISNT ratio, etc. Study of these factors
requires deep processing of fundus image. Extending these
parameters to the proposed work canmakethesystemmore
automatic and reliable giving greater accuracy.
REFERENCES
1. Inoue N., Yanashima K., Magatani K., Kurihara T.
“Development of a simple diagnostic method for the
glaucoma using ocular fundus pictures” proceedings of
2005 IEEE, Engineering in medicine and biology 27th
annual conference, shanghai, China, pp. 3355-3358,
January 2006.
2. Aquino A., Gegundez-Arias M.E, Marin D. “Detecting the
optic disk boundary in digital fundus images using
morphological, edge detection and feature extraction
techniques” IEEE transactions on medical imaging,
Vol.29, pp1860-1869, November 2010.
3. Li.H, Chutatape O. “A model based approach for
automated feature extraction in fundus images”,
proceedings of 9th IEEE international conference on
computer vision (ICCV’03),Vol.1, pp.394-399, October
2003.
4. Yang X., Hamaguchi S., Sun Y., Xiao S. “Detect of optic
disk centre based on Gaussian vessel detector and
tangent information transform” IEEE 2011, 4th
international conference on biomedical engineeringand
informatics (BMEI),Vol.1,pp 250-254, October 2011.
Classifier Accuracy Specificity Sensitivity
SVM 93% 80% 98%
Random Tree 89% 75% 95%
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 01 | Jan 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 147
5. Nayak J., Acharya R., Bhatt P.S., Nakul Shetty,Lim T.C.
“Automated diagnosis of Glaucoma using fundus
images”, Springer science + Business media, LLC 2008.
6. Fengshou Yin, Jiang Liu, Damon Wi ng Kee Wong,
Ngam Meng Tan, Carol Cheung,Manibhaskaran,TienYin
Wong “Automated segmentation of optic disk and optic
cup in fundus images for glaucoma diagnosis”, 25th
international Symposium on computer based medical
system pp.1-6, June 2012.
7. R. Manjula Sri, V. AnushaSree, T.L.N. Rohitha, K.M.M.
Rao, SM-IEEE, “Measurement of Retinal Blood Vessel
Diameter for the Detection of Eye Diseases using
LabVIEW”, Proceedings of ICACCT – 2012, at APIIT SD,
Panipat on 3rd November 2012, Pages 308-311.
8. R. Manjula Sri, Ch. Madhubabu, KMM Rao: “Automatic
detection of Age Related Macular Degeneration from
Retinal Images”-International Journal ofComputingand
Communication Technologies, Asia Pacific Institute of
Information Technology.
9. R. Manjula Sri, KMM Rao: “Applications of Image
Processing Techniques for Automatic Detection of Eye
diseases”-proceedings of International conference on
Bio-signals, Images and Instrumentation
(ICBSII2013)201, pp8-14.
10. R. Manjula Sri, Ch. Madhubabu, and KMM Rao: “Lab
VIEW based assessment of CDR for the detection of
Glaucoma”-Proceedings of IEEE International
Conference on Emerging trends in Computing,
Communication and Nanotechnology (ICECCN-2013)
during March 25th-26th, 2013 at Tuticorin, Tamilnadu.
11. Carlos M. Travieso, Jesús B. Alonso-Hernández:”ANovel
Approach to Detect Glaucoma in Retinal Fundus Images
using Cup-Disk andRim-Disk Ratio”-International Work
Conference on Bio-inspired Intelligence (IWOBI),2015.
12. Dua S., Acharya U.R.,Chowriappa P.,Sree S.V., “Wavelet
based energy features for glaucomatous image
classification” IEEE transaction on information
technology in biomedicine, Vol. 16, no.1,pp 80-87,
January 2012.
13. Khan F., Khan S.A.,Yasin U.U., Haq I.,Qamar U. “Detection
of glaucoma using retinal fundus images”, The 2013
IEEE Biomedical Engineering International conference
(BMEi-CON 2013),pp 1-5, October 2013.
14. Malay Kishore Dutta, Amit Kumar Mourya, Anushikha
Singh, M Parthasarathi, Radim Burget & Kamil Riha,
“Glaucoma Detection by Segmenting the Super Pixels
from Fundus Colour Retinal Images” International
Conference on Medical Imaging, m- Health & Emerging
Communication System (MEDCOM 2014), pp. 86-90,
November 2014.
15. Dr. KMM Rao, Dr. G. Chandra Shekar, S. Rajendra Kumar,
R.N. Anjali-“Plannimetric Analysis of Optic Disc and
Cup”.
16. Medha V. Wyawahare and Dr. Pradeep M. Patil-
“Extraction of Optic Cup in Retinal Fundus Images: A
Comparative approach", International Journal of Signal
Processing, Image Processing and Pattern Recognition,
Vol.7, No.2 (2014), pp.389-398.
17. S. Kavitha, S. Karthikeyan & Duraiswamy K.
“Neuroretinal rim Quantification in Fundus Images to
DetectGlaucoma"IJCSNS International Journal of
Computer Science and Network Security, VOL.10 No.6,
June 2010.
18. Zhuo Zhang, Jiang Liu, Wing Kee Wong, Ngan Meng Tan,
Joo Hwee Lim, Shijian Lu, Huiqi Li, Liang, Z.andWong,T.
Y. “Neuro-retinal optic cup detection in glaucoma
diagnosis”, Second International Conference on
Biomedical Engineering and Informatics, pp. 1-4, 2009.
19. Arturo Aquino, Manuel Emilio Gegúndez-Arias, and
Diego Marín-“Detecting the Optic Disc Boundary in
Digital Fundus Images Using Morphological, Edge
Detection, and Feature Extraction Techniques”- IEEE
Transactions On Medical Imaging, 2010.

More Related Content

What's hot

Iris recognition for personal identification using lamstar neural network
Iris recognition for personal identification using lamstar neural networkIris recognition for personal identification using lamstar neural network
Iris recognition for personal identification using lamstar neural networkijcsit
 
H0366051058
H0366051058H0366051058
H0366051058theijes
 
Eye sight determination on tablet based hand held device with image processin...
Eye sight determination on tablet based hand held device with image processin...Eye sight determination on tablet based hand held device with image processin...
Eye sight determination on tablet based hand held device with image processin...eSAT Publishing House
 
(539011774) 8 th sem glaucoma proj report
(539011774) 8 th sem glaucoma  proj report(539011774) 8 th sem glaucoma  proj report
(539011774) 8 th sem glaucoma proj reportDebangana Dutta
 
Glaucoma Screening Test By Segmentation of Optical Disc& Cup Segmentation Usi...
Glaucoma Screening Test By Segmentation of Optical Disc& Cup Segmentation Usi...Glaucoma Screening Test By Segmentation of Optical Disc& Cup Segmentation Usi...
Glaucoma Screening Test By Segmentation of Optical Disc& Cup Segmentation Usi...IJERA Editor
 
An Approach for the Detection of Vascular Abnormalities in Diabetic Retinopathy
An Approach for the Detection of Vascular Abnormalities in Diabetic RetinopathyAn Approach for the Detection of Vascular Abnormalities in Diabetic Retinopathy
An Approach for the Detection of Vascular Abnormalities in Diabetic Retinopathyijdmtaiir
 
IRJET- Eye Diabetic Retinopathy by using Deep Learning
IRJET- Eye Diabetic Retinopathy by using Deep LearningIRJET- Eye Diabetic Retinopathy by using Deep Learning
IRJET- Eye Diabetic Retinopathy by using Deep LearningIRJET Journal
 
IRJET- Retinal Structure Segmentation using Adaptive Fuzzy Thresholding
IRJET- Retinal Structure Segmentation using Adaptive Fuzzy ThresholdingIRJET- Retinal Structure Segmentation using Adaptive Fuzzy Thresholding
IRJET- Retinal Structure Segmentation using Adaptive Fuzzy ThresholdingIRJET Journal
 
Development of novel BMIP algorithms for human eyes affected with glaucoma an...
Development of novel BMIP algorithms for human eyes affected with glaucoma an...Development of novel BMIP algorithms for human eyes affected with glaucoma an...
Development of novel BMIP algorithms for human eyes affected with glaucoma an...Premier Publishers
 
Automated fundus image quality assessment and segmentation of optic disc usin...
Automated fundus image quality assessment and segmentation of optic disc usin...Automated fundus image quality assessment and segmentation of optic disc usin...
Automated fundus image quality assessment and segmentation of optic disc usin...IJECEIAES
 
Binary operation based hard exudate detection and fuzzy based classification ...
Binary operation based hard exudate detection and fuzzy based classification ...Binary operation based hard exudate detection and fuzzy based classification ...
Binary operation based hard exudate detection and fuzzy based classification ...IJECEIAES
 
IRJET- Survey based on Detection of Optic Disc in Retinal Images using Segmen...
IRJET- Survey based on Detection of Optic Disc in Retinal Images using Segmen...IRJET- Survey based on Detection of Optic Disc in Retinal Images using Segmen...
IRJET- Survey based on Detection of Optic Disc in Retinal Images using Segmen...IRJET Journal
 
C LASSIFICATION O F D IABETES R ETINA I MAGES U SING B LOOD V ESSEL A REAS
C LASSIFICATION  O F D IABETES  R ETINA I MAGES  U SING B LOOD V ESSEL A REASC LASSIFICATION  O F D IABETES  R ETINA I MAGES  U SING B LOOD V ESSEL A REAS
C LASSIFICATION O F D IABETES R ETINA I MAGES U SING B LOOD V ESSEL A REASIJCI JOURNAL
 
A Novel Approach for Diabetic Retinopthy Classification
A Novel Approach for Diabetic Retinopthy ClassificationA Novel Approach for Diabetic Retinopthy Classification
A Novel Approach for Diabetic Retinopthy ClassificationIJERA Editor
 
Automatic detection of optic disc and blood vessels from retinal images using...
Automatic detection of optic disc and blood vessels from retinal images using...Automatic detection of optic disc and blood vessels from retinal images using...
Automatic detection of optic disc and blood vessels from retinal images using...eSAT Publishing House
 

What's hot (20)

Iris recognition for personal identification using lamstar neural network
Iris recognition for personal identification using lamstar neural networkIris recognition for personal identification using lamstar neural network
Iris recognition for personal identification using lamstar neural network
 
[IJET-V1I3P6]
[IJET-V1I3P6] [IJET-V1I3P6]
[IJET-V1I3P6]
 
H0366051058
H0366051058H0366051058
H0366051058
 
Eye sight determination on tablet based hand held device with image processin...
Eye sight determination on tablet based hand held device with image processin...Eye sight determination on tablet based hand held device with image processin...
Eye sight determination on tablet based hand held device with image processin...
 
(539011774) 8 th sem glaucoma proj report
(539011774) 8 th sem glaucoma  proj report(539011774) 8 th sem glaucoma  proj report
(539011774) 8 th sem glaucoma proj report
 
SID 2013
SID 2013SID 2013
SID 2013
 
Glaucoma Screening Test By Segmentation of Optical Disc& Cup Segmentation Usi...
Glaucoma Screening Test By Segmentation of Optical Disc& Cup Segmentation Usi...Glaucoma Screening Test By Segmentation of Optical Disc& Cup Segmentation Usi...
Glaucoma Screening Test By Segmentation of Optical Disc& Cup Segmentation Usi...
 
An Approach for the Detection of Vascular Abnormalities in Diabetic Retinopathy
An Approach for the Detection of Vascular Abnormalities in Diabetic RetinopathyAn Approach for the Detection of Vascular Abnormalities in Diabetic Retinopathy
An Approach for the Detection of Vascular Abnormalities in Diabetic Retinopathy
 
IRJET- Eye Diabetic Retinopathy by using Deep Learning
IRJET- Eye Diabetic Retinopathy by using Deep LearningIRJET- Eye Diabetic Retinopathy by using Deep Learning
IRJET- Eye Diabetic Retinopathy by using Deep Learning
 
IRJET- Retinal Structure Segmentation using Adaptive Fuzzy Thresholding
IRJET- Retinal Structure Segmentation using Adaptive Fuzzy ThresholdingIRJET- Retinal Structure Segmentation using Adaptive Fuzzy Thresholding
IRJET- Retinal Structure Segmentation using Adaptive Fuzzy Thresholding
 
Development of novel BMIP algorithms for human eyes affected with glaucoma an...
Development of novel BMIP algorithms for human eyes affected with glaucoma an...Development of novel BMIP algorithms for human eyes affected with glaucoma an...
Development of novel BMIP algorithms for human eyes affected with glaucoma an...
 
Automated fundus image quality assessment and segmentation of optic disc usin...
Automated fundus image quality assessment and segmentation of optic disc usin...Automated fundus image quality assessment and segmentation of optic disc usin...
Automated fundus image quality assessment and segmentation of optic disc usin...
 
50120130406010
5012013040601050120130406010
50120130406010
 
Binary operation based hard exudate detection and fuzzy based classification ...
Binary operation based hard exudate detection and fuzzy based classification ...Binary operation based hard exudate detection and fuzzy based classification ...
Binary operation based hard exudate detection and fuzzy based classification ...
 
IRJET- Survey based on Detection of Optic Disc in Retinal Images using Segmen...
IRJET- Survey based on Detection of Optic Disc in Retinal Images using Segmen...IRJET- Survey based on Detection of Optic Disc in Retinal Images using Segmen...
IRJET- Survey based on Detection of Optic Disc in Retinal Images using Segmen...
 
C LASSIFICATION O F D IABETES R ETINA I MAGES U SING B LOOD V ESSEL A REAS
C LASSIFICATION  O F D IABETES  R ETINA I MAGES  U SING B LOOD V ESSEL A REASC LASSIFICATION  O F D IABETES  R ETINA I MAGES  U SING B LOOD V ESSEL A REAS
C LASSIFICATION O F D IABETES R ETINA I MAGES U SING B LOOD V ESSEL A REAS
 
Ijetcas14 315
Ijetcas14 315Ijetcas14 315
Ijetcas14 315
 
Ijetcas14 523
Ijetcas14 523Ijetcas14 523
Ijetcas14 523
 
A Novel Approach for Diabetic Retinopthy Classification
A Novel Approach for Diabetic Retinopthy ClassificationA Novel Approach for Diabetic Retinopthy Classification
A Novel Approach for Diabetic Retinopthy Classification
 
Automatic detection of optic disc and blood vessels from retinal images using...
Automatic detection of optic disc and blood vessels from retinal images using...Automatic detection of optic disc and blood vessels from retinal images using...
Automatic detection of optic disc and blood vessels from retinal images using...
 

Similar to IRJET- Retinal Health Diagnosis using Image Processing

IRJET- Early Detection of Glaucoma using Image Processing
IRJET- Early Detection of Glaucoma using Image ProcessingIRJET- Early Detection of Glaucoma using Image Processing
IRJET- Early Detection of Glaucoma using Image ProcessingIRJET Journal
 
IRJET- Automatic Detection of Diabetic Retinopathy using R-CNN
IRJET- Automatic Detection of Diabetic Retinopathy using R-CNNIRJET- Automatic Detection of Diabetic Retinopathy using R-CNN
IRJET- Automatic Detection of Diabetic Retinopathy using R-CNNIRJET Journal
 
Optic Disk and Retinal Vesssel Segmentation in Fundus Images
Optic Disk and Retinal Vesssel Segmentation in Fundus ImagesOptic Disk and Retinal Vesssel Segmentation in Fundus Images
Optic Disk and Retinal Vesssel Segmentation in Fundus ImagesIRJET Journal
 
SURVEY OF GLAUCOMA DETECTION METHODS
SURVEY OF GLAUCOMA DETECTION METHODSSURVEY OF GLAUCOMA DETECTION METHODS
SURVEY OF GLAUCOMA DETECTION METHODSEditor IJMTER
 
IRJET - Automatic Detection of Diabetic Retinopathy in Retinal Image
IRJET -  	  Automatic Detection of Diabetic Retinopathy in Retinal ImageIRJET -  	  Automatic Detection of Diabetic Retinopathy in Retinal Image
IRJET - Automatic Detection of Diabetic Retinopathy in Retinal ImageIRJET Journal
 
Glaucoma progressiondetection based on Retinal Features.pptx
 Glaucoma progressiondetection based on Retinal Features.pptx Glaucoma progressiondetection based on Retinal Features.pptx
Glaucoma progressiondetection based on Retinal Features.pptxssuser097984
 
IRJET - Human Eye Pupil Detection Technique using Center of Gravity Method
IRJET - Human Eye Pupil Detection Technique using Center of Gravity MethodIRJET - Human Eye Pupil Detection Technique using Center of Gravity Method
IRJET - Human Eye Pupil Detection Technique using Center of Gravity MethodIRJET Journal
 
IRJET- Automatic Detection of Diabetic Retinopathy Lesions
IRJET- Automatic Detection of Diabetic Retinopathy LesionsIRJET- Automatic Detection of Diabetic Retinopathy Lesions
IRJET- Automatic Detection of Diabetic Retinopathy LesionsIRJET Journal
 
Study on Glaucoma Detection Using CNN
Study on Glaucoma Detection Using CNNStudy on Glaucoma Detection Using CNN
Study on Glaucoma Detection Using CNNIRJET Journal
 
SUPERPIXEL CLASSIFICATION BASED OPTIC DISC AND OPTIC CUP SEGMENTATION FOR GLA...
SUPERPIXEL CLASSIFICATION BASED OPTIC DISC AND OPTIC CUP SEGMENTATION FOR GLA...SUPERPIXEL CLASSIFICATION BASED OPTIC DISC AND OPTIC CUP SEGMENTATION FOR GLA...
SUPERPIXEL CLASSIFICATION BASED OPTIC DISC AND OPTIC CUP SEGMENTATION FOR GLA...pharmaindexing
 
IRJET -An Automatated Learning Approach for Detection of Diabetic Retinopathy...
IRJET -An Automatated Learning Approach for Detection of Diabetic Retinopathy...IRJET -An Automatated Learning Approach for Detection of Diabetic Retinopathy...
IRJET -An Automatated Learning Approach for Detection of Diabetic Retinopathy...IRJET Journal
 
FEATURE EXTRACTION TO DETECT AND CLASSIFY DIABETIC RETINOPATHY USING FUNDAL I...
FEATURE EXTRACTION TO DETECT AND CLASSIFY DIABETIC RETINOPATHY USING FUNDAL I...FEATURE EXTRACTION TO DETECT AND CLASSIFY DIABETIC RETINOPATHY USING FUNDAL I...
FEATURE EXTRACTION TO DETECT AND CLASSIFY DIABETIC RETINOPATHY USING FUNDAL I...IRJET Journal
 
IRIS BIOMETRIC RECOGNITION SYSTEM EMPLOYING CANNY OPERATOR
IRIS BIOMETRIC RECOGNITION SYSTEM EMPLOYING CANNY OPERATORIRIS BIOMETRIC RECOGNITION SYSTEM EMPLOYING CANNY OPERATOR
IRIS BIOMETRIC RECOGNITION SYSTEM EMPLOYING CANNY OPERATORcsitconf
 
IRIS BIOMETRIC RECOGNITION SYSTEM EMPLOYING CANNY OPERATOR
IRIS BIOMETRIC RECOGNITION SYSTEM EMPLOYING CANNY OPERATORIRIS BIOMETRIC RECOGNITION SYSTEM EMPLOYING CANNY OPERATOR
IRIS BIOMETRIC RECOGNITION SYSTEM EMPLOYING CANNY OPERATORcscpconf
 
IRJET- Retinal Fundus Image Segmentation using Watershed Algorithm
IRJET-  	  Retinal Fundus Image Segmentation using Watershed AlgorithmIRJET-  	  Retinal Fundus Image Segmentation using Watershed Algorithm
IRJET- Retinal Fundus Image Segmentation using Watershed AlgorithmIRJET Journal
 
Retinal Vessel Segmentation in U-Net Using Deep Learning
Retinal Vessel Segmentation in U-Net Using Deep LearningRetinal Vessel Segmentation in U-Net Using Deep Learning
Retinal Vessel Segmentation in U-Net Using Deep LearningIRJET Journal
 
Detection of Macular Edema by using Various Techniques of Feature Extraction ...
Detection of Macular Edema by using Various Techniques of Feature Extraction ...Detection of Macular Edema by using Various Techniques of Feature Extraction ...
Detection of Macular Edema by using Various Techniques of Feature Extraction ...IRJET Journal
 
Deep Learning Radial Basis Function Neural Networks Based Automatic Detection...
Deep Learning Radial Basis Function Neural Networks Based Automatic Detection...Deep Learning Radial Basis Function Neural Networks Based Automatic Detection...
Deep Learning Radial Basis Function Neural Networks Based Automatic Detection...Associate Professor in VSB Coimbatore
 
FEATURE EXTRACTION FROM RETINAL FUNDUS IMAGES
FEATURE EXTRACTION FROM RETINAL FUNDUS IMAGESFEATURE EXTRACTION FROM RETINAL FUNDUS IMAGES
FEATURE EXTRACTION FROM RETINAL FUNDUS IMAGESIRJET Journal
 
IRJET- Detection of Cataract by Statistical Features and Classification
IRJET- Detection of Cataract by Statistical Features and ClassificationIRJET- Detection of Cataract by Statistical Features and Classification
IRJET- Detection of Cataract by Statistical Features and ClassificationIRJET Journal
 

Similar to IRJET- Retinal Health Diagnosis using Image Processing (20)

IRJET- Early Detection of Glaucoma using Image Processing
IRJET- Early Detection of Glaucoma using Image ProcessingIRJET- Early Detection of Glaucoma using Image Processing
IRJET- Early Detection of Glaucoma using Image Processing
 
IRJET- Automatic Detection of Diabetic Retinopathy using R-CNN
IRJET- Automatic Detection of Diabetic Retinopathy using R-CNNIRJET- Automatic Detection of Diabetic Retinopathy using R-CNN
IRJET- Automatic Detection of Diabetic Retinopathy using R-CNN
 
Optic Disk and Retinal Vesssel Segmentation in Fundus Images
Optic Disk and Retinal Vesssel Segmentation in Fundus ImagesOptic Disk and Retinal Vesssel Segmentation in Fundus Images
Optic Disk and Retinal Vesssel Segmentation in Fundus Images
 
SURVEY OF GLAUCOMA DETECTION METHODS
SURVEY OF GLAUCOMA DETECTION METHODSSURVEY OF GLAUCOMA DETECTION METHODS
SURVEY OF GLAUCOMA DETECTION METHODS
 
IRJET - Automatic Detection of Diabetic Retinopathy in Retinal Image
IRJET -  	  Automatic Detection of Diabetic Retinopathy in Retinal ImageIRJET -  	  Automatic Detection of Diabetic Retinopathy in Retinal Image
IRJET - Automatic Detection of Diabetic Retinopathy in Retinal Image
 
Glaucoma progressiondetection based on Retinal Features.pptx
 Glaucoma progressiondetection based on Retinal Features.pptx Glaucoma progressiondetection based on Retinal Features.pptx
Glaucoma progressiondetection based on Retinal Features.pptx
 
IRJET - Human Eye Pupil Detection Technique using Center of Gravity Method
IRJET - Human Eye Pupil Detection Technique using Center of Gravity MethodIRJET - Human Eye Pupil Detection Technique using Center of Gravity Method
IRJET - Human Eye Pupil Detection Technique using Center of Gravity Method
 
IRJET- Automatic Detection of Diabetic Retinopathy Lesions
IRJET- Automatic Detection of Diabetic Retinopathy LesionsIRJET- Automatic Detection of Diabetic Retinopathy Lesions
IRJET- Automatic Detection of Diabetic Retinopathy Lesions
 
Study on Glaucoma Detection Using CNN
Study on Glaucoma Detection Using CNNStudy on Glaucoma Detection Using CNN
Study on Glaucoma Detection Using CNN
 
SUPERPIXEL CLASSIFICATION BASED OPTIC DISC AND OPTIC CUP SEGMENTATION FOR GLA...
SUPERPIXEL CLASSIFICATION BASED OPTIC DISC AND OPTIC CUP SEGMENTATION FOR GLA...SUPERPIXEL CLASSIFICATION BASED OPTIC DISC AND OPTIC CUP SEGMENTATION FOR GLA...
SUPERPIXEL CLASSIFICATION BASED OPTIC DISC AND OPTIC CUP SEGMENTATION FOR GLA...
 
IRJET -An Automatated Learning Approach for Detection of Diabetic Retinopathy...
IRJET -An Automatated Learning Approach for Detection of Diabetic Retinopathy...IRJET -An Automatated Learning Approach for Detection of Diabetic Retinopathy...
IRJET -An Automatated Learning Approach for Detection of Diabetic Retinopathy...
 
FEATURE EXTRACTION TO DETECT AND CLASSIFY DIABETIC RETINOPATHY USING FUNDAL I...
FEATURE EXTRACTION TO DETECT AND CLASSIFY DIABETIC RETINOPATHY USING FUNDAL I...FEATURE EXTRACTION TO DETECT AND CLASSIFY DIABETIC RETINOPATHY USING FUNDAL I...
FEATURE EXTRACTION TO DETECT AND CLASSIFY DIABETIC RETINOPATHY USING FUNDAL I...
 
IRIS BIOMETRIC RECOGNITION SYSTEM EMPLOYING CANNY OPERATOR
IRIS BIOMETRIC RECOGNITION SYSTEM EMPLOYING CANNY OPERATORIRIS BIOMETRIC RECOGNITION SYSTEM EMPLOYING CANNY OPERATOR
IRIS BIOMETRIC RECOGNITION SYSTEM EMPLOYING CANNY OPERATOR
 
IRIS BIOMETRIC RECOGNITION SYSTEM EMPLOYING CANNY OPERATOR
IRIS BIOMETRIC RECOGNITION SYSTEM EMPLOYING CANNY OPERATORIRIS BIOMETRIC RECOGNITION SYSTEM EMPLOYING CANNY OPERATOR
IRIS BIOMETRIC RECOGNITION SYSTEM EMPLOYING CANNY OPERATOR
 
IRJET- Retinal Fundus Image Segmentation using Watershed Algorithm
IRJET-  	  Retinal Fundus Image Segmentation using Watershed AlgorithmIRJET-  	  Retinal Fundus Image Segmentation using Watershed Algorithm
IRJET- Retinal Fundus Image Segmentation using Watershed Algorithm
 
Retinal Vessel Segmentation in U-Net Using Deep Learning
Retinal Vessel Segmentation in U-Net Using Deep LearningRetinal Vessel Segmentation in U-Net Using Deep Learning
Retinal Vessel Segmentation in U-Net Using Deep Learning
 
Detection of Macular Edema by using Various Techniques of Feature Extraction ...
Detection of Macular Edema by using Various Techniques of Feature Extraction ...Detection of Macular Edema by using Various Techniques of Feature Extraction ...
Detection of Macular Edema by using Various Techniques of Feature Extraction ...
 
Deep Learning Radial Basis Function Neural Networks Based Automatic Detection...
Deep Learning Radial Basis Function Neural Networks Based Automatic Detection...Deep Learning Radial Basis Function Neural Networks Based Automatic Detection...
Deep Learning Radial Basis Function Neural Networks Based Automatic Detection...
 
FEATURE EXTRACTION FROM RETINAL FUNDUS IMAGES
FEATURE EXTRACTION FROM RETINAL FUNDUS IMAGESFEATURE EXTRACTION FROM RETINAL FUNDUS IMAGES
FEATURE EXTRACTION FROM RETINAL FUNDUS IMAGES
 
IRJET- Detection of Cataract by Statistical Features and Classification
IRJET- Detection of Cataract by Statistical Features and ClassificationIRJET- Detection of Cataract by Statistical Features and Classification
IRJET- Detection of Cataract by Statistical Features and Classification
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2RajaP95
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort servicejennyeacort
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learningmisbanausheenparvam
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionDr.Costas Sachpazis
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxPoojaBan
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
microprocessor 8085 and its interfacing
microprocessor 8085  and its interfacingmicroprocessor 8085  and its interfacing
microprocessor 8085 and its interfacingjaychoudhary37
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AIabhishek36461
 
power system scada applications and uses
power system scada applications and usespower system scada applications and uses
power system scada applications and usesDevarapalliHaritha
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
Introduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxIntroduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxvipinkmenon1
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLDeelipZope
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfAsst.prof M.Gokilavani
 

Recently uploaded (20)

IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learning
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptx
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
microprocessor 8085 and its interfacing
microprocessor 8085  and its interfacingmicroprocessor 8085  and its interfacing
microprocessor 8085 and its interfacing
 
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AI
 
power system scada applications and uses
power system scada applications and usespower system scada applications and uses
power system scada applications and uses
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
Introduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxIntroduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptx
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCL
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
 

IRJET- Retinal Health Diagnosis using Image Processing

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 01 | Jan 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 144 Retinal Health Diagnosis using Image Processing Kamakshi Manchikalapati1, B. Anuradha2 1Department of ECE PG Scholar Sri Venkateswara College of Engineering Tirupati INDIA 2Department of ECE Professor Sri Venkateswara College of Engineering Tirupati INDIA ---------------------------------------------------------------------***---------------------------------------------------------------------- Abstract - Vision is most important aspect of human beings. The occurrence of ocular diseases is increasing and diseases like glaucoma, diabetic retinopathy and age-related macular degeneration are the leading causes of blindness. However identifying these diseases is time consuming. So the use of an automatic Computer aided diagnosis system reduce the time taken for analysis it will also reduce error which is occurred during subjective analysis in this work we propose one such method for detection of glaucoma. We had taken 45 normal and 40 abnormal fundus images. In this work the most efficient method for detecting glaucoma is Propose. In order to classify glaucoma Rim to Disc Ratio is considered. Adaptive image thresholding technique is used to segment disc and optic cup. Neuro retinal Rim is obtained from segmentedoptic disc and optic cup which is used for evaluating Rim disc ratio in order to detect glaucoma. SVM classifier is used to classify the images as Glaucomatic or healthy. After testing on 20 fundus images our proposed method gives result with an accuracy of 90%, sensitivity 98% and specificity 80% Keywords: fundus image, glaucoma, rim to disk ratio, Adaptive image thresholding, optic disk and optic cup, Neuro retinal rim, SVM classifier 1. Introduction Glaucoma is an ocular disorder which leads to permanent blindnessinhumansbeings.It especiallyoccur in aged humans beings. As the order is irreversible it is important to detect in it's early stages. Techniques used by Ophthalmologist are time consuming so in this paper we proposed a technique for detecting glaucoma in low time with the higher accuracy. 2. Proposed Method for Glaucoma Detection 2.1 Pre Processing and filtering The proposed method for the detectionofglaucoma employs, RGB fundus image is used as an input. It is filtered using a noising filter. It removes noise. In order to detect glaucoma, the most important region of interest is the optic disk. Therefore, instead of processing on the whole retinal image, we focus on region around optic disk and extracted it[3]. This ROI is a minor image which helps in faster processing and automated screening of glaucoma. The Block diagram of proposed method is described in Fig 1 Fig.1: Block Diagram for Glaucoma Detection 2.1.1 Region of Interest In order to extract ROI first we compute centre of the optic disc. A window of dimension r*column is created. Where r is radius of optic disc. Then the window is passed through the image spatially for all rows and obtaining the Maxima we find row of the centre of the optic disc. Another window of dimension r*r is created. Window is passed through the all columns of detected row. Hence the coordinates of centre of optic Cup is obtained 2.2 Morphological operations To decompose an image in visually homogeneous regions we use a simple and efficient technique of SLIC. It is based on a spatially localised version of K means clustering initially wedivideimage intogrid. The size of the grid is step region. To initialise a correspondingK means we used the centre of each grid tile. Finally segmented image yielded by refining the Kmeanscentreand clusters. 2.3 Feature Extraction 2.3.1 Optic Disc Segmentation The extracted ROI image consist of three channels that is red green and blue. To detect optic disc red channel is used. We preferred red channel because optic disc appear to be the brightest and blood vesselsarealsosuppressedinthis channel. Hence it is easier and accuratetosegmentopticdisc in red channel of input image. Adaptive thresholding technique is used to segment the optic disc.
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 01 | Jan 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 145 2.3.2 Optic Cup segmentation Optic Cup is segmented using Green channel of ROI image. Statistical features such as mean standard deviation of Green channel is calculated. Mean and standard deviationiscalculatedbyusingfollowing formulas X=1/N xi…………………..…….(1) σ2= 1/N (xi – X) 2 ……….(2) Standard deviation is defined as the square root of variance. Optic cup and optic disc is segmented by determining the Threshold level of histogram of each image. From the statistical patterns of histogram we know that mean is Central tendency and the standard deviation is the dispersion from that Central value. 2.3.3 Neuro retinal Rim Neuro retinal rim is the region located between the edge of optic disk and optic cup. After segmenting of optic disk Fig 2.3.3(a) and optic cup Fig 2.3.3(b), Neuro Retinal Rim is obtained by subtracting optic cup from optic disk. Neuro Retinal Rim is shown in Fig 2.3.3(c). (a) (b) (c) Fig.2.3.3: (a) Segmented optic disk image (b) Segmented optic cup image (c) Neuro Retinal Rim image The change in appearance of this area helps in identifying damage to the disk due toglaucoma.Thickness of the rim is an important parameter to detect whether the fundus image is glaucomatic or not [17][18]. The healthy optic disk is thicker in inferior portionthaninsuperiorofthe image. In a glaucomatic eye, optic cup increases in its area vertically reducing the thickness of the rim in infero - temporal disk sectors. Consequently rim-disk ratio for infero-temporal region of the rim can be evaluated to determine glaucoma.[2] 2.4 Classification Classification of images as glaucomatic or healthy can be done based on two parameters 1.Cuptodisc ratioand 2.Rim to disc ratio 2. 4.1 Cup to Disc Ratio Cup disc ratio is the first parameter weusetodetect glaucoma. CDR is defined as ratio of total segmented cup area to segmented disc area. CDR = Optic Cup Area/Optic Disc Area…..(3) Cup area and disc area are obtained by summing all the white pixels in segmented cup and disc. Then CDR is calculated if this value is greater than 0.3 then the fundus image is considered as glaucomatic else it is healthy 2.4.2 Rim to Disc Ratio RDR CDR itself is notsufficientto detectwhethertheeyes glaucomatic or not. Sometimes patient is diagnosed inappropriately due to large optic cup in presence of large optic disc and has healthy Rim tissue. Therefore neuro retinal rim tissue plays vital role in detection of glaucoma. RDR is calculated RDR= Rim area in infero-temporal region/ Disk Area…….. (4) RDR is less than or equal to 0.4 then the fundus image is considered to be normal glaucomatic else healthy. After calculating these parameters we use these parameters to train SVM classifier to detect glaucoma. 2.5. SVM Classifier The Support VectorMachine(SVM)isa populardata classification technique, which was proposed by Vapnik and his group at AT&T BELL Laboratories. Generally speaking, the SVM is a supervised learning method that can analyze data and recognize patterns. It has been widely used in human face recognition, handwriting recognition, and vehicle license the recognition and can outperform other competing methods in most cases. The main concept of theSVM istoconstructa hyper- plane or a set of hyper-planes in a high or infinite dimensional space, and use them to classify the data. Among the possible hyper-planes, SVMs select the one where the distance of the hyper-plane from the closest data point is as large as possible. The distance between this data point and the hyper-plane is known as the margin. Figure.2.5.1 shows the geometric interpretation of the SVM, the figure on the left presents a large margin whereas the image on the right displays a small margin. As a result, the hyper-plane on the left is more desirable than the one on the right for the purposes of classification. SVM classifier is trained with previously calculated parameters of CDR RDR. SVM classifier will bifurcate the diseased pixel and normal pixel based on the previously
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 01 | Jan 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 146 calculated parameters. Based on that we can detect weather the person is affected with glaucoma or not. Fig. 2.5.1 Geometric interpretation of SVM 3. Results The algorithm has been applied to retinal images of normal and glaucomatic eyes from open source data base as well as data from local hospital database the statistical results of all these cases are shown in Table3.1. Accuracy Specificity andSensitivityresultsduringtesting are given in Table 3.2. Table3.1. Accuracy Specificity Sensitivity results Table 3.1 statistical results of all cases 4. Conclusions An efficient method for detecting glaucoma is proposed in this project. In ordertodetectwhethertheinput images is glaucomatic or healthy ocular parameters are calculated. Adaptiveimagethresholdingtechniqueisusedto segment optic disc and optic cup which makes the proposed method independent of image quality. Neuro retinal Rim is obtained from segmented optic disc and optic Cup which is used to evaluate disc ratio in Infero temporal regions which helps in screening glaucoma.SVMclassifieris usedtoclassify fundus images as glaucomatic or healthy. As we are using SVM we get classification more accurately compared to previous random tree because in random tree we assign value of one for diseased pixel and 0 for normal pixel. But SVM classifier will bifurcate the diseased pixel and normal pixel based on the values obtained from ocular parameters calculated previously to train the SVMclassifier. As we are using SVM we get classification more accurately compared to previous random tree. When tested on a large data set of 20 fundus images, the proposed method gives promising results over 90% accuracy, 98% sensitivity and 80% specificity. Future work may involve extracting more parameters in fundus image which reflects glaucoma symptoms such as disk hemorrhage, focal notching, peripappilary atrophy, ISNT ratio, etc. Study of these factors requires deep processing of fundus image. Extending these parameters to the proposed work canmakethesystemmore automatic and reliable giving greater accuracy. REFERENCES 1. Inoue N., Yanashima K., Magatani K., Kurihara T. “Development of a simple diagnostic method for the glaucoma using ocular fundus pictures” proceedings of 2005 IEEE, Engineering in medicine and biology 27th annual conference, shanghai, China, pp. 3355-3358, January 2006. 2. Aquino A., Gegundez-Arias M.E, Marin D. “Detecting the optic disk boundary in digital fundus images using morphological, edge detection and feature extraction techniques” IEEE transactions on medical imaging, Vol.29, pp1860-1869, November 2010. 3. Li.H, Chutatape O. “A model based approach for automated feature extraction in fundus images”, proceedings of 9th IEEE international conference on computer vision (ICCV’03),Vol.1, pp.394-399, October 2003. 4. Yang X., Hamaguchi S., Sun Y., Xiao S. “Detect of optic disk centre based on Gaussian vessel detector and tangent information transform” IEEE 2011, 4th international conference on biomedical engineeringand informatics (BMEI),Vol.1,pp 250-254, October 2011. Classifier Accuracy Specificity Sensitivity SVM 93% 80% 98% Random Tree 89% 75% 95%
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 01 | Jan 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 147 5. Nayak J., Acharya R., Bhatt P.S., Nakul Shetty,Lim T.C. “Automated diagnosis of Glaucoma using fundus images”, Springer science + Business media, LLC 2008. 6. Fengshou Yin, Jiang Liu, Damon Wi ng Kee Wong, Ngam Meng Tan, Carol Cheung,Manibhaskaran,TienYin Wong “Automated segmentation of optic disk and optic cup in fundus images for glaucoma diagnosis”, 25th international Symposium on computer based medical system pp.1-6, June 2012. 7. R. Manjula Sri, V. AnushaSree, T.L.N. Rohitha, K.M.M. Rao, SM-IEEE, “Measurement of Retinal Blood Vessel Diameter for the Detection of Eye Diseases using LabVIEW”, Proceedings of ICACCT – 2012, at APIIT SD, Panipat on 3rd November 2012, Pages 308-311. 8. R. Manjula Sri, Ch. Madhubabu, KMM Rao: “Automatic detection of Age Related Macular Degeneration from Retinal Images”-International Journal ofComputingand Communication Technologies, Asia Pacific Institute of Information Technology. 9. R. Manjula Sri, KMM Rao: “Applications of Image Processing Techniques for Automatic Detection of Eye diseases”-proceedings of International conference on Bio-signals, Images and Instrumentation (ICBSII2013)201, pp8-14. 10. R. Manjula Sri, Ch. Madhubabu, and KMM Rao: “Lab VIEW based assessment of CDR for the detection of Glaucoma”-Proceedings of IEEE International Conference on Emerging trends in Computing, Communication and Nanotechnology (ICECCN-2013) during March 25th-26th, 2013 at Tuticorin, Tamilnadu. 11. Carlos M. Travieso, Jesús B. Alonso-Hernández:”ANovel Approach to Detect Glaucoma in Retinal Fundus Images using Cup-Disk andRim-Disk Ratio”-International Work Conference on Bio-inspired Intelligence (IWOBI),2015. 12. Dua S., Acharya U.R.,Chowriappa P.,Sree S.V., “Wavelet based energy features for glaucomatous image classification” IEEE transaction on information technology in biomedicine, Vol. 16, no.1,pp 80-87, January 2012. 13. Khan F., Khan S.A.,Yasin U.U., Haq I.,Qamar U. “Detection of glaucoma using retinal fundus images”, The 2013 IEEE Biomedical Engineering International conference (BMEi-CON 2013),pp 1-5, October 2013. 14. Malay Kishore Dutta, Amit Kumar Mourya, Anushikha Singh, M Parthasarathi, Radim Burget & Kamil Riha, “Glaucoma Detection by Segmenting the Super Pixels from Fundus Colour Retinal Images” International Conference on Medical Imaging, m- Health & Emerging Communication System (MEDCOM 2014), pp. 86-90, November 2014. 15. Dr. KMM Rao, Dr. G. Chandra Shekar, S. Rajendra Kumar, R.N. Anjali-“Plannimetric Analysis of Optic Disc and Cup”. 16. Medha V. Wyawahare and Dr. Pradeep M. Patil- “Extraction of Optic Cup in Retinal Fundus Images: A Comparative approach", International Journal of Signal Processing, Image Processing and Pattern Recognition, Vol.7, No.2 (2014), pp.389-398. 17. S. Kavitha, S. Karthikeyan & Duraiswamy K. “Neuroretinal rim Quantification in Fundus Images to DetectGlaucoma"IJCSNS International Journal of Computer Science and Network Security, VOL.10 No.6, June 2010. 18. Zhuo Zhang, Jiang Liu, Wing Kee Wong, Ngan Meng Tan, Joo Hwee Lim, Shijian Lu, Huiqi Li, Liang, Z.andWong,T. Y. “Neuro-retinal optic cup detection in glaucoma diagnosis”, Second International Conference on Biomedical Engineering and Informatics, pp. 1-4, 2009. 19. Arturo Aquino, Manuel Emilio Gegúndez-Arias, and Diego Marín-“Detecting the Optic Disc Boundary in Digital Fundus Images Using Morphological, Edge Detection, and Feature Extraction Techniques”- IEEE Transactions On Medical Imaging, 2010.