SlideShare a Scribd company logo
1 of 3
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 06 | June 2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 2760
Optic Disc and Fovea Localization with GUI In Retinal Fundus Images
Priyanka Kale1, Kamble Vijay2, Navinkumar Patle3
1BTech (EXTC) SGGSIE&T, NANDED
2BTech (IT) SGGSIE&T, NANDED
3BTech (INSTR) GCOE, JALGAON
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract – Detection of Diabetic Retinopathy(DR) is
extensively done using retinal fundus images. The localization
of normal anatomic components like optic disc and fovea in
retinal fundus images is necessary step for automatic
diagnosis of it. A computer screening of DR provides an
immediate detection of Diabetic Retinopathy. In this paper an
automated method for localization of optic disc and fovea is
proposed. Optic disc is localized using 2D convolutionofimage
in different dimension and creating a mask by adjusting
brightness of retinal fundus image. And fovea is detected by
taking mean of green channel and using gauss filter. For
making it automatic, Graphical User Interface (GUI) is used.
Key Words: Diabetic Retinopathy, Optic Disc,
Fovea, Retinal Images, Fundus Images, Gaussian
Filter, etc.
1.INTRODUCTION
The human eye is an organ of visual system which
provides sense of light incoming into eye. Eyes help us
visualise and understand dimensions, shapes, etc. of known
Universe. Retina is the core part of eye that includessensory
neurons that respond to incoming light. It convert incoming
light signal into electrical signals. The ability of thepersonto
see clearly is termed as visual acuity. If visual acuity of a
person diminishes then eye disorders like diabetic
retinopathy can occur.
Diabetic Retinopathy occurs due to Diabetic
mellitus, which is caused by inability of body to produce or
properly use insulin which leads to high sugar level. For
automated analysis of retinal images localization of normal
anatomy like optic disc and fovea is important step.
Abnormalities associated with eye disease arenotuniformly
spread therefore knowledge of the localization of
abnormalities in the retina is important while computerized
analysis of retinal images. The Fovea and Optic Disc are the
main landmark in the retinal images. In this paper we
develop a technique for automatic localization of these
landmark. Fig 1 shows the retinal fundus image with the
optic disc , macula and fovea.
1.1 Optic Disc
The optic disc is the bright yellowish spot on the
retina of eye from which the optic nerves begins and the
axons ofretinalganglion cellscome together. Opticdiscisthe
point where the nervous and blood system enter the retina.
In optic disc there are no rods or cones. . Around 1–1.2
million nerve fibers are carried from optic disc to brain. The
optic disc is oval shaped, it hasdimensionof around 1.76mm
horizontally and1.92mm vertically. Opticdiscisplaced2to4
mm beside fovea.
Fig: 1
1.2 Fovea
A small hole with closely bundled cone cellsformFovea.It
is centrally placed inside of macula. It helps in vision by
making it easier to visualise sharp and central vision, which
is necessary in humans to control activities in which visual
detail is very important such as reading. Macula islocated at
center of retina and is of diameter around 2.5 to 3mm . The
center of fovea isof diameter 0.3mm. The fovea isa tiny rod-
free region and there is no blood vessels. It is made up of
cones as tightly packed as physically possible.
2. RELATED WORKS
Sekhar, Al-Nuaimy and Nandi presentanautomated
localization of optic disc and Fovea. They have used the
mathematical morphology for the analysis shapesin images
and combined RGB(Red, Green, Blue) value of the images as
it showsgood variations between opticdiscandbackground.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 06 | June 2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 2761
This methodology worksonly when there are no exudatesin
the background. Their technique included Hough transform
for boundary and center. Fovea is detected by exploring the
macula region by determining intensity variation [1].
Other approaches include featuresof retinalvasculatureand
itsspatial relation with the OD to localise OD [2]. For theGUI
other approaches which were used for hard exudate
detection are used [3]. Few more methods for localisation
and segmentation of OD are proposed by extracting ROI and
using Hough transform [4], another method proposed kNN
classifier [5].
3. METHODOLOGY
Chart -1: System Flowchart
The Flowchart in chart1 showstheproposesystemworkflow
step by step. In IDRiD Sub-Challenge 3, the image size of
fundus photographs is 4288*2848, and we reduce them to a
lower resolution of 256*256 due to limited computational
resource.
Fovea is one of the most fundamental structures of
retina, and this is located in the center of the macula. In the
fundus image, The darkest part of approximated circle is
fovea. Therefore,to extractthe fovea region,we have applied
preprocessing such as RGB to Grey, dataset normalization,
and contrast enhancement.
The GUI system we have developed contains first
step as select image, from which we can select image from
differentdifferentlocations. After selecting image wehaveto
preprocess the image for that we have applied RGB to grey,
dataset normalization, and contrast enhancement. In
preprocessingwe are removingunnecessaryblurringandthe
noise stuff of things that makes image unclear. By image
preprocessing we get the clear image of retina.
Fig:2 Optic Disc Detection Algorithm
The strel function createsa disk-shaped structuring
element, where wehave to specifytheradiusandthenumber
of line structuring elemensts those are used to approximate
the disk shape. Morphological operations using disk
approximations run much faster when the structuring
element uses approximations.
The imerode function erodesthebinary,grayscaleor
packed binary image, and the eroded image is returned. The
result of the function is the structuring element object or
array of structuring element objects..
The edge function returns the classification edgefor
the object with dataof uint8(im) and classification‘canny’.By
this we are getting the mask. And subtract image g and p.
g = rgb2gray(image);
mask = sqrt((x-C).^2 + (y-R).^2) <= radius;
p=im2uint8(mask);
result = imsubtract(g, p)
the resultant optic disc image is in result.
For Fovea detection we are separately developed
another algorithm. In which we are using green plane of the
preprocessed image. And finding out the mean of green
planed image forgettingthe vector pointsthose are lessthan
mean found that are required for cropping the centroid
region from image. Here we are setting the sigma values as
follows for applying the filter:
sigma_s = 40;
sigma_r = 0.15;
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 06 | June 2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 2762
Fig -1: Screening for optic disc and fovea.
gg = filter(fg, sigma_s, sigma_r);
detail_amplification = 10;
detailsg = fg - gg;
enhanced_fg = fg +
detailsg*detail_amplification;
J12=im2uint8(enhanced_fg);
h = fspecial('gaussian');
J = imadjust(J12);
The filtered image is used to get the fovea image as we have
to subtract the gg from fg. The resultant image is enhanced
by enhanced_fg = fg +
detailsg*detail_amplification;.
The Guassian filter is used here returns a Gaussian lowpass
filter of size h which is rotationally symmetric with standard
deviation positive sigma. The origin, which is center pixel of
structuring element, identifies the pixel in the image being
processed. Flat structuring elements are created by strel
function.
afterOpening = logical(afterOpening);
fovea_image = zeros(m,n);
The logical function converts afterOpening image into an
arrayof logical values. A nonzero element of after Openingis
converted to logical 1 (true) and zeros are transferred to
logical 0 (false). Complex values and NaNs cannot be
converted to logical values and result in a conversion error.
The function getLargestComponet will return the largest
connected component and this is done redundantly in a loop
and stored in xout image. And from this xout image we are
detecting the fovea. And here we get the fovea.
3. CONCLUSIONS
In this paper, the image captured from the fundus camera is
used for localizationof optic disc and fovea with thehelpofa
graphic user interface. The localization techniques specified
in this paper have success even when the exudates are
present in the image. This gives us edge over previous
techniques [1]. In addition, this paper presentsaGUIforeasy
manipulation and representation of technique.
ACKNOWLEDGEMENT
We would like to acknowledge the immense support of our
Professor Dr. M.B. Kokare without whom it wasnot possible
to write the paper. Their guidance formed the base of the
paper and their expertise comments greatly enhanced the
manuscript. Besides, we would liketo thankMr.RaviKamble
Research Scholar at Center of Excellence for his guidance,
availability and motivation for the paper.
Our Sincere thanksalso goesto Mrs. SushmaKulkarniforher
immense support.
Last but not the least we would like to thank SGGSIE&T,
Nanded for providing us the infrastructure for the
completion of paper.
REFERENCES
[1] Sekhar, Al-Nuamey, Nandi, ‘Automated Localisation of
optic disk and fovea in retinal fundus Image’. 16th
European Signal Processing Conference (EUSIPCO
2008).
[2] Jaffar, Nandi and Al-Nuamey, ’Automatic Localisation of
Optic Disc and Fovea to assist Diabetic Retinopathy
Screenings’. EUSPICO 2013 1569735225.
[3] Prof. B. Venkatlaxmi, V. Saravanam, G. Jenny Nivedita,
‘Graphic User Interface for Enhanced Retinal Image
Analysis for Diagnosing Diabetic Retinopathy’.978-1-
61284-486-2/111 ©2011 IEEE.
[4] Desai, Garg, Yadav, Sivaswamy, ‘Automated localisation
and segmentation of optic disc and fovea from retinal
Images’.
[5] M. Niemeijer, M.D. Abràmoff and B. van Ginneken. "Fast
detection of the optic disc and fovea in color fundus
photographs", Medical Image Analysis2009;13(6):859-
870.
[6] CP Wilkinson, Frederick L Ferris, Ronald E Klein, Paul P
Lee, Carl David Agardh, Matthew Davis, Diana Dills,
Anslem Kampik, R Pararajasegaram, and Juan T
Verdaguer, ‘Proposed international clinical diabetic
retinopathy and diabetic macular edema disease
severity,’ Ophthalmology, vol. 110, no. 9,pp.1677-1682,
2003
[7] T. Walter, J. C. Klein, P. Massin, and A. Erginay, "A
contribution of image processing to the diagnosis of
diabetic retinopathy--detection of exudates in color
fundus images of the human retina," IEEE Trans Med
Imaging, vol. 21, pp. 1236-43, 2002.

More Related Content

What's hot

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
 
Pattern recognition on human vision
Pattern recognition on human visionPattern recognition on human vision
Pattern recognition on human visionGiacomo Veneri
 
Evaluating Human Visual Search Performance by Monte Carlo methods and Heurist...
Evaluating Human Visual Search Performance by Monte Carlo methods and Heurist...Evaluating Human Visual Search Performance by Monte Carlo methods and Heurist...
Evaluating Human Visual Search Performance by Monte Carlo methods and Heurist...Giacomo Veneri
 
Bayesain Hypothesis of Selective Attention - Raw 2011 poster
Bayesain Hypothesis of Selective Attention - Raw 2011 posterBayesain Hypothesis of Selective Attention - Raw 2011 poster
Bayesain Hypothesis of Selective Attention - Raw 2011 posterGiacomo Veneri
 
Giiacomo Veneri PHD Dissertation
Giiacomo Veneri PHD Dissertation Giiacomo Veneri PHD Dissertation
Giiacomo Veneri PHD Dissertation Giacomo Veneri
 
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
 
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
 
A UTOMATIC C OMPUTATION OF CDR U SING F UZZY C LUSTERING T ECHNIQUES
A UTOMATIC C OMPUTATION OF CDR U SING F UZZY C LUSTERING T ECHNIQUESA UTOMATIC C OMPUTATION OF CDR U SING F UZZY C LUSTERING T ECHNIQUES
A UTOMATIC C OMPUTATION OF CDR U SING F UZZY C LUSTERING T ECHNIQUEScsandit
 
Various cataract detection methods-A survey
Various cataract detection methods-A surveyVarious cataract detection methods-A survey
Various cataract detection methods-A surveyIRJET Journal
 
H0366051058
H0366051058H0366051058
H0366051058theijes
 
A Survey on Retinal Area Detector From Scanning Laser Ophthalmoscope (SLO) Im...
A Survey on Retinal Area Detector From Scanning Laser Ophthalmoscope (SLO) Im...A Survey on Retinal Area Detector From Scanning Laser Ophthalmoscope (SLO) Im...
A Survey on Retinal Area Detector From Scanning Laser Ophthalmoscope (SLO) Im...IRJET Journal
 
IRJET- Glaucoma Detection using Convolutional Neural Network
IRJET- Glaucoma Detection using Convolutional Neural NetworkIRJET- Glaucoma Detection using Convolutional Neural Network
IRJET- Glaucoma Detection using Convolutional Neural NetworkIRJET Journal
 
Retinal image analysis using morphological process and clustering technique
Retinal image analysis using morphological process and clustering techniqueRetinal image analysis using morphological process and clustering technique
Retinal image analysis using morphological process and clustering techniquesipij
 
Diagnosis of Diabetic Retinopathy by Detection of Microneurysm And Exudates
Diagnosis of Diabetic Retinopathy by Detection of Microneurysm And ExudatesDiagnosis of Diabetic Retinopathy by Detection of Microneurysm And Exudates
Diagnosis of Diabetic Retinopathy by Detection of Microneurysm And ExudatesIRJET Journal
 
Automated Glaucoma Detection
Automated Glaucoma DetectionAutomated Glaucoma Detection
Automated Glaucoma DetectionLee123Tai
 
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
 
Optic Disc and Macula Localization from Retinal Optical Coherence Tomography ...
Optic Disc and Macula Localization from Retinal Optical Coherence Tomography ...Optic Disc and Macula Localization from Retinal Optical Coherence Tomography ...
Optic Disc and Macula Localization from Retinal Optical Coherence Tomography ...IJECEIAES
 
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
 

What's hot (20)

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
 
A045010107
A045010107A045010107
A045010107
 
Pattern recognition on human vision
Pattern recognition on human visionPattern recognition on human vision
Pattern recognition on human vision
 
Evaluating Human Visual Search Performance by Monte Carlo methods and Heurist...
Evaluating Human Visual Search Performance by Monte Carlo methods and Heurist...Evaluating Human Visual Search Performance by Monte Carlo methods and Heurist...
Evaluating Human Visual Search Performance by Monte Carlo methods and Heurist...
 
Bayesain Hypothesis of Selective Attention - Raw 2011 poster
Bayesain Hypothesis of Selective Attention - Raw 2011 posterBayesain Hypothesis of Selective Attention - Raw 2011 poster
Bayesain Hypothesis of Selective Attention - Raw 2011 poster
 
Giiacomo Veneri PHD Dissertation
Giiacomo Veneri PHD Dissertation Giiacomo Veneri PHD Dissertation
Giiacomo Veneri PHD Dissertation
 
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...
 
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 ...
 
A UTOMATIC C OMPUTATION OF CDR U SING F UZZY C LUSTERING T ECHNIQUES
A UTOMATIC C OMPUTATION OF CDR U SING F UZZY C LUSTERING T ECHNIQUESA UTOMATIC C OMPUTATION OF CDR U SING F UZZY C LUSTERING T ECHNIQUES
A UTOMATIC C OMPUTATION OF CDR U SING F UZZY C LUSTERING T ECHNIQUES
 
Various cataract detection methods-A survey
Various cataract detection methods-A surveyVarious cataract detection methods-A survey
Various cataract detection methods-A survey
 
H0366051058
H0366051058H0366051058
H0366051058
 
A Survey on Retinal Area Detector From Scanning Laser Ophthalmoscope (SLO) Im...
A Survey on Retinal Area Detector From Scanning Laser Ophthalmoscope (SLO) Im...A Survey on Retinal Area Detector From Scanning Laser Ophthalmoscope (SLO) Im...
A Survey on Retinal Area Detector From Scanning Laser Ophthalmoscope (SLO) Im...
 
IRJET- Glaucoma Detection using Convolutional Neural Network
IRJET- Glaucoma Detection using Convolutional Neural NetworkIRJET- Glaucoma Detection using Convolutional Neural Network
IRJET- Glaucoma Detection using Convolutional Neural Network
 
Retinal image analysis using morphological process and clustering technique
Retinal image analysis using morphological process and clustering techniqueRetinal image analysis using morphological process and clustering technique
Retinal image analysis using morphological process and clustering technique
 
Diagnosis of Diabetic Retinopathy by Detection of Microneurysm And Exudates
Diagnosis of Diabetic Retinopathy by Detection of Microneurysm And ExudatesDiagnosis of Diabetic Retinopathy by Detection of Microneurysm And Exudates
Diagnosis of Diabetic Retinopathy by Detection of Microneurysm And Exudates
 
Automated Glaucoma Detection
Automated Glaucoma DetectionAutomated Glaucoma Detection
Automated Glaucoma Detection
 
Ijetcas14 523
Ijetcas14 523Ijetcas14 523
Ijetcas14 523
 
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...
 
Optic Disc and Macula Localization from Retinal Optical Coherence Tomography ...
Optic Disc and Macula Localization from Retinal Optical Coherence Tomography ...Optic Disc and Macula Localization from Retinal Optical Coherence Tomography ...
Optic Disc and Macula Localization from Retinal Optical Coherence Tomography ...
 
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...
 

Similar to IRJET-Optic Disc and Fovea Localization with GUI in Retinal Fundus Images

Study on Glaucoma Detection Using CNN
Study on Glaucoma Detection Using CNNStudy on Glaucoma Detection Using CNN
Study on Glaucoma Detection Using CNNIRJET Journal
 
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 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
 
FEATURE EXTRACTION FROM RETINAL FUNDUS IMAGES
FEATURE EXTRACTION FROM RETINAL FUNDUS IMAGESFEATURE EXTRACTION FROM RETINAL FUNDUS IMAGES
FEATURE EXTRACTION FROM RETINAL FUNDUS IMAGESIRJET 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
 
IRJET- Automated Detection of Diabetic Retinopathy using Compressed Sensing
IRJET- Automated Detection of Diabetic Retinopathy using Compressed SensingIRJET- Automated Detection of Diabetic Retinopathy using Compressed Sensing
IRJET- Automated Detection of Diabetic Retinopathy using Compressed SensingIRJET 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- 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 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
 
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
 
A SURVEY ON KIDNEY STONE DETECTION USING IMAGE PROCESSING AND DEEP LEARNING
A SURVEY ON KIDNEY STONE DETECTION USING IMAGE PROCESSING AND DEEP LEARNINGA SURVEY ON KIDNEY STONE DETECTION USING IMAGE PROCESSING AND DEEP LEARNING
A SURVEY ON KIDNEY STONE DETECTION USING IMAGE PROCESSING AND DEEP LEARNINGIRJET Journal
 
IRJET- Application of False Removal Algorithm Specially for Retinal Images wi...
IRJET- Application of False Removal Algorithm Specially for Retinal Images wi...IRJET- Application of False Removal Algorithm Specially for Retinal Images wi...
IRJET- Application of False Removal Algorithm Specially for Retinal Images wi...IRJET Journal
 
IRJET- Blood Vessel Segmentation in Retinal Images using Matlab
IRJET- Blood Vessel Segmentation in Retinal Images using MatlabIRJET- Blood Vessel Segmentation in Retinal Images using Matlab
IRJET- Blood Vessel Segmentation in Retinal Images using MatlabIRJET 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
 
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
 
IRJET- Survey of Iris Recognition Techniques
IRJET- Survey of Iris Recognition TechniquesIRJET- Survey of Iris Recognition Techniques
IRJET- Survey of Iris Recognition TechniquesIRJET 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
 
IRJET- Blood Vessel Segmentation & Analysis in Retinal Images using Image Pro...
IRJET- Blood Vessel Segmentation & Analysis in Retinal Images using Image Pro...IRJET- Blood Vessel Segmentation & Analysis in Retinal Images using Image Pro...
IRJET- Blood Vessel Segmentation & Analysis in Retinal Images using Image Pro...IRJET Journal
 
IRJET- Comparison of Preprocessing Methods for Diabetic Retinopathy Detec...
IRJET-  	  Comparison of Preprocessing Methods for Diabetic Retinopathy Detec...IRJET-  	  Comparison of Preprocessing Methods for Diabetic Retinopathy Detec...
IRJET- Comparison of Preprocessing Methods for Diabetic Retinopathy Detec...IRJET Journal
 
IRJET- Low Light Image Enhancement using Convolutional Neural Network
IRJET-  	  Low Light Image Enhancement using Convolutional Neural NetworkIRJET-  	  Low Light Image Enhancement using Convolutional Neural Network
IRJET- Low Light Image Enhancement using Convolutional Neural NetworkIRJET Journal
 

Similar to IRJET-Optic Disc and Fovea Localization with GUI in Retinal Fundus Images (20)

Study on Glaucoma Detection Using CNN
Study on Glaucoma Detection Using CNNStudy on Glaucoma Detection Using CNN
Study on Glaucoma Detection Using CNN
 
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 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
 
FEATURE EXTRACTION FROM RETINAL FUNDUS IMAGES
FEATURE EXTRACTION FROM RETINAL FUNDUS IMAGESFEATURE EXTRACTION FROM RETINAL FUNDUS IMAGES
FEATURE EXTRACTION FROM RETINAL FUNDUS IMAGES
 
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
 
IRJET- Automated Detection of Diabetic Retinopathy using Compressed Sensing
IRJET- Automated Detection of Diabetic Retinopathy using Compressed SensingIRJET- Automated Detection of Diabetic Retinopathy using Compressed Sensing
IRJET- Automated Detection of Diabetic Retinopathy using Compressed Sensing
 
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- 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 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
 
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
 
A SURVEY ON KIDNEY STONE DETECTION USING IMAGE PROCESSING AND DEEP LEARNING
A SURVEY ON KIDNEY STONE DETECTION USING IMAGE PROCESSING AND DEEP LEARNINGA SURVEY ON KIDNEY STONE DETECTION USING IMAGE PROCESSING AND DEEP LEARNING
A SURVEY ON KIDNEY STONE DETECTION USING IMAGE PROCESSING AND DEEP LEARNING
 
IRJET- Application of False Removal Algorithm Specially for Retinal Images wi...
IRJET- Application of False Removal Algorithm Specially for Retinal Images wi...IRJET- Application of False Removal Algorithm Specially for Retinal Images wi...
IRJET- Application of False Removal Algorithm Specially for Retinal Images wi...
 
IRJET- Blood Vessel Segmentation in Retinal Images using Matlab
IRJET- Blood Vessel Segmentation in Retinal Images using MatlabIRJET- Blood Vessel Segmentation in Retinal Images using Matlab
IRJET- Blood Vessel Segmentation in Retinal Images using Matlab
 
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
 
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
 
IRJET- Survey of Iris Recognition Techniques
IRJET- Survey of Iris Recognition TechniquesIRJET- Survey of Iris Recognition Techniques
IRJET- Survey of Iris Recognition Techniques
 
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
 
IRJET- Blood Vessel Segmentation & Analysis in Retinal Images using Image Pro...
IRJET- Blood Vessel Segmentation & Analysis in Retinal Images using Image Pro...IRJET- Blood Vessel Segmentation & Analysis in Retinal Images using Image Pro...
IRJET- Blood Vessel Segmentation & Analysis in Retinal Images using Image Pro...
 
IRJET- Comparison of Preprocessing Methods for Diabetic Retinopathy Detec...
IRJET-  	  Comparison of Preprocessing Methods for Diabetic Retinopathy Detec...IRJET-  	  Comparison of Preprocessing Methods for Diabetic Retinopathy Detec...
IRJET- Comparison of Preprocessing Methods for Diabetic Retinopathy Detec...
 
IRJET- Low Light Image Enhancement using Convolutional Neural Network
IRJET-  	  Low Light Image Enhancement using Convolutional Neural NetworkIRJET-  	  Low Light Image Enhancement using Convolutional Neural Network
IRJET- Low Light Image Enhancement using Convolutional Neural Network
 

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

notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptMsecMca
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptDineshKumar4165
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startQuintin Balsdon
 
2016EF22_0 solar project report rooftop projects
2016EF22_0 solar project report rooftop projects2016EF22_0 solar project report rooftop projects
2016EF22_0 solar project report rooftop projectssmsksolar
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTbhaskargani46
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfJiananWang21
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayEpec Engineered Technologies
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfRagavanV2
 
Work-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxWork-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxJuliansyahHarahap1
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performancesivaprakash250
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXssuser89054b
 
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoorTop Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoordharasingh5698
 
Employee leave management system project.
Employee leave management system project.Employee leave management system project.
Employee leave management system project.Kamal Acharya
 
22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf203318pmpc
 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptNANDHAKUMARA10
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringmulugeta48
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 

Recently uploaded (20)

(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the start
 
2016EF22_0 solar project report rooftop projects
2016EF22_0 solar project report rooftop projects2016EF22_0 solar project report rooftop projects
2016EF22_0 solar project report rooftop projects
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power Play
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdf
 
Work-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxWork-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptx
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
 
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoorTop Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
 
Employee leave management system project.
Employee leave management system project.Employee leave management system project.
Employee leave management system project.
 
22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf
 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.ppt
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineering
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
 

IRJET-Optic Disc and Fovea Localization with GUI in Retinal Fundus Images

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 06 | June 2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 2760 Optic Disc and Fovea Localization with GUI In Retinal Fundus Images Priyanka Kale1, Kamble Vijay2, Navinkumar Patle3 1BTech (EXTC) SGGSIE&T, NANDED 2BTech (IT) SGGSIE&T, NANDED 3BTech (INSTR) GCOE, JALGAON ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract – Detection of Diabetic Retinopathy(DR) is extensively done using retinal fundus images. The localization of normal anatomic components like optic disc and fovea in retinal fundus images is necessary step for automatic diagnosis of it. A computer screening of DR provides an immediate detection of Diabetic Retinopathy. In this paper an automated method for localization of optic disc and fovea is proposed. Optic disc is localized using 2D convolutionofimage in different dimension and creating a mask by adjusting brightness of retinal fundus image. And fovea is detected by taking mean of green channel and using gauss filter. For making it automatic, Graphical User Interface (GUI) is used. Key Words: Diabetic Retinopathy, Optic Disc, Fovea, Retinal Images, Fundus Images, Gaussian Filter, etc. 1.INTRODUCTION The human eye is an organ of visual system which provides sense of light incoming into eye. Eyes help us visualise and understand dimensions, shapes, etc. of known Universe. Retina is the core part of eye that includessensory neurons that respond to incoming light. It convert incoming light signal into electrical signals. The ability of thepersonto see clearly is termed as visual acuity. If visual acuity of a person diminishes then eye disorders like diabetic retinopathy can occur. Diabetic Retinopathy occurs due to Diabetic mellitus, which is caused by inability of body to produce or properly use insulin which leads to high sugar level. For automated analysis of retinal images localization of normal anatomy like optic disc and fovea is important step. Abnormalities associated with eye disease arenotuniformly spread therefore knowledge of the localization of abnormalities in the retina is important while computerized analysis of retinal images. The Fovea and Optic Disc are the main landmark in the retinal images. In this paper we develop a technique for automatic localization of these landmark. Fig 1 shows the retinal fundus image with the optic disc , macula and fovea. 1.1 Optic Disc The optic disc is the bright yellowish spot on the retina of eye from which the optic nerves begins and the axons ofretinalganglion cellscome together. Opticdiscisthe point where the nervous and blood system enter the retina. In optic disc there are no rods or cones. . Around 1–1.2 million nerve fibers are carried from optic disc to brain. The optic disc is oval shaped, it hasdimensionof around 1.76mm horizontally and1.92mm vertically. Opticdiscisplaced2to4 mm beside fovea. Fig: 1 1.2 Fovea A small hole with closely bundled cone cellsformFovea.It is centrally placed inside of macula. It helps in vision by making it easier to visualise sharp and central vision, which is necessary in humans to control activities in which visual detail is very important such as reading. Macula islocated at center of retina and is of diameter around 2.5 to 3mm . The center of fovea isof diameter 0.3mm. The fovea isa tiny rod- free region and there is no blood vessels. It is made up of cones as tightly packed as physically possible. 2. RELATED WORKS Sekhar, Al-Nuaimy and Nandi presentanautomated localization of optic disc and Fovea. They have used the mathematical morphology for the analysis shapesin images and combined RGB(Red, Green, Blue) value of the images as it showsgood variations between opticdiscandbackground.
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 06 | June 2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 2761 This methodology worksonly when there are no exudatesin the background. Their technique included Hough transform for boundary and center. Fovea is detected by exploring the macula region by determining intensity variation [1]. Other approaches include featuresof retinalvasculatureand itsspatial relation with the OD to localise OD [2]. For theGUI other approaches which were used for hard exudate detection are used [3]. Few more methods for localisation and segmentation of OD are proposed by extracting ROI and using Hough transform [4], another method proposed kNN classifier [5]. 3. METHODOLOGY Chart -1: System Flowchart The Flowchart in chart1 showstheproposesystemworkflow step by step. In IDRiD Sub-Challenge 3, the image size of fundus photographs is 4288*2848, and we reduce them to a lower resolution of 256*256 due to limited computational resource. Fovea is one of the most fundamental structures of retina, and this is located in the center of the macula. In the fundus image, The darkest part of approximated circle is fovea. Therefore,to extractthe fovea region,we have applied preprocessing such as RGB to Grey, dataset normalization, and contrast enhancement. The GUI system we have developed contains first step as select image, from which we can select image from differentdifferentlocations. After selecting image wehaveto preprocess the image for that we have applied RGB to grey, dataset normalization, and contrast enhancement. In preprocessingwe are removingunnecessaryblurringandthe noise stuff of things that makes image unclear. By image preprocessing we get the clear image of retina. Fig:2 Optic Disc Detection Algorithm The strel function createsa disk-shaped structuring element, where wehave to specifytheradiusandthenumber of line structuring elemensts those are used to approximate the disk shape. Morphological operations using disk approximations run much faster when the structuring element uses approximations. The imerode function erodesthebinary,grayscaleor packed binary image, and the eroded image is returned. The result of the function is the structuring element object or array of structuring element objects.. The edge function returns the classification edgefor the object with dataof uint8(im) and classification‘canny’.By this we are getting the mask. And subtract image g and p. g = rgb2gray(image); mask = sqrt((x-C).^2 + (y-R).^2) <= radius; p=im2uint8(mask); result = imsubtract(g, p) the resultant optic disc image is in result. For Fovea detection we are separately developed another algorithm. In which we are using green plane of the preprocessed image. And finding out the mean of green planed image forgettingthe vector pointsthose are lessthan mean found that are required for cropping the centroid region from image. Here we are setting the sigma values as follows for applying the filter: sigma_s = 40; sigma_r = 0.15;
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 06 | June 2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 2762 Fig -1: Screening for optic disc and fovea. gg = filter(fg, sigma_s, sigma_r); detail_amplification = 10; detailsg = fg - gg; enhanced_fg = fg + detailsg*detail_amplification; J12=im2uint8(enhanced_fg); h = fspecial('gaussian'); J = imadjust(J12); The filtered image is used to get the fovea image as we have to subtract the gg from fg. The resultant image is enhanced by enhanced_fg = fg + detailsg*detail_amplification;. The Guassian filter is used here returns a Gaussian lowpass filter of size h which is rotationally symmetric with standard deviation positive sigma. The origin, which is center pixel of structuring element, identifies the pixel in the image being processed. Flat structuring elements are created by strel function. afterOpening = logical(afterOpening); fovea_image = zeros(m,n); The logical function converts afterOpening image into an arrayof logical values. A nonzero element of after Openingis converted to logical 1 (true) and zeros are transferred to logical 0 (false). Complex values and NaNs cannot be converted to logical values and result in a conversion error. The function getLargestComponet will return the largest connected component and this is done redundantly in a loop and stored in xout image. And from this xout image we are detecting the fovea. And here we get the fovea. 3. CONCLUSIONS In this paper, the image captured from the fundus camera is used for localizationof optic disc and fovea with thehelpofa graphic user interface. The localization techniques specified in this paper have success even when the exudates are present in the image. This gives us edge over previous techniques [1]. In addition, this paper presentsaGUIforeasy manipulation and representation of technique. ACKNOWLEDGEMENT We would like to acknowledge the immense support of our Professor Dr. M.B. Kokare without whom it wasnot possible to write the paper. Their guidance formed the base of the paper and their expertise comments greatly enhanced the manuscript. Besides, we would liketo thankMr.RaviKamble Research Scholar at Center of Excellence for his guidance, availability and motivation for the paper. Our Sincere thanksalso goesto Mrs. SushmaKulkarniforher immense support. Last but not the least we would like to thank SGGSIE&T, Nanded for providing us the infrastructure for the completion of paper. REFERENCES [1] Sekhar, Al-Nuamey, Nandi, ‘Automated Localisation of optic disk and fovea in retinal fundus Image’. 16th European Signal Processing Conference (EUSIPCO 2008). [2] Jaffar, Nandi and Al-Nuamey, ’Automatic Localisation of Optic Disc and Fovea to assist Diabetic Retinopathy Screenings’. EUSPICO 2013 1569735225. [3] Prof. B. Venkatlaxmi, V. Saravanam, G. Jenny Nivedita, ‘Graphic User Interface for Enhanced Retinal Image Analysis for Diagnosing Diabetic Retinopathy’.978-1- 61284-486-2/111 ©2011 IEEE. [4] Desai, Garg, Yadav, Sivaswamy, ‘Automated localisation and segmentation of optic disc and fovea from retinal Images’. [5] M. Niemeijer, M.D. Abràmoff and B. van Ginneken. "Fast detection of the optic disc and fovea in color fundus photographs", Medical Image Analysis2009;13(6):859- 870. [6] CP Wilkinson, Frederick L Ferris, Ronald E Klein, Paul P Lee, Carl David Agardh, Matthew Davis, Diana Dills, Anslem Kampik, R Pararajasegaram, and Juan T Verdaguer, ‘Proposed international clinical diabetic retinopathy and diabetic macular edema disease severity,’ Ophthalmology, vol. 110, no. 9,pp.1677-1682, 2003 [7] T. Walter, J. C. Klein, P. Massin, and A. Erginay, "A contribution of image processing to the diagnosis of diabetic retinopathy--detection of exudates in color fundus images of the human retina," IEEE Trans Med Imaging, vol. 21, pp. 1236-43, 2002.