SlideShare a Scribd company logo
1 of 8
Download to read offline
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 300
AUTOMATIC DETECTION OF OPTIC DISC AND BLOOD VESSELS
FROM RETINAL IMAGES USING IMAGE PROCESSING TECHNIQUES
Oakar Phyo1
, AungSoe Khaing2
1
M.E Thesis Student, Department of Electronic Engineering, Mandalay Technological University, Mandalay, Myanmar
2
Associate Professor, Department of Electronic Engineering, Mandalay Technological University, Mandalay, Myanmar
Abstract
Diabetic retinopathy is the common cause of blindness. This paper presents the mathematical morphology method to detect and
eliminate the optic disc (OD) and the blood vessels. Detection of optic disc and the blood vessels are the necessary steps in the
detection of diabetic retinopathy because the blood vessels and the optic disc are the normal features of the retinal image. And also,
the optic disc and the exudates are the brightest portion of the image. Detection of optic disc and the blood vessels can help the
ophthalmologists to detect the diseases earlier and faster. Optic disc and the blood vessels are detected and eliminated by using
mathematical morphology methods such as closing, filling, morphological reconstruction and Otsu algorithm. The objective of this
paper is to detect the normal features of the image. By using the result, the ophthalmologists can detect the diseases easily.
Keywords: Blood vessels, Diabetic retinopathy, mathematical morphology, Otsu algorithm, optic disc (OD)
----------------------------------------------------------------------***------------------------------------------------------------------------
1. INTRODUCTION
The visions of many people in the world are threatened by the
diabetic retinopathy. Diabetic retinopathy is the eye disease
that causes the blindness or blurs the visions. It arises due to
the high sugar level in the blood. According to the research,
the screening of diabetic retinopathy can reduce the risk of
blindness by 50% [1]-[2]. Therefore, early detection could
limit the severity of the disease and treating the disease more
efficiently. The optic disc detection is an important step to
identify the other fundus features. The optic disc can be seen
as the elliptical shape in the eye fundus image. Its size varies
from one person to another, between one-tenth and one-fifth
of the image [3]. In colour image, it appears as the bright
yellowish region as the exudates. The optic disc is the normal
feature of the image but the exudates are the abnormal case.
Detection the optic disc can be used to decrease the false
positive in the detection of the exudates [4]. And also the
detection of the blood vessels is as important as the detection
of the optic disc because the optic disc and the blood vessels
are the normal features of the image. Manual detection of
blood vessels is difficult since the appearance of blood vessel
in a retinal image is complex and having low contrast [5].
A number of methods for optic disc detection and blood
vessels detection have been published.Osarehet al. [6] located
the optic disc center by means of template matching and
extracted its boundary using a snake initialized on a
morphologically enhanced region of the optic disc. Lowell et
al. [7] also localized the OD by means of template matching as
well as also selected a deformable contour model for its
segmentation. Another deformable model-based approach was
presented in [8].Another template-matching approach for OD
segmentation is the Hausdorff-based template matching
presented by Lalondeet al. [9]. Initially, they determined a set
of OD candidate regions by means of multiresolution
processing through pyramidal decomposition. For each OD
region candidate, they calculated a simple confidence value
representing the ratio between the mean intensity inside the
candidate region and inside its neighborhood. The Canny edge
detector and a Rayleigh-based threshold were then applied to
the green-band image regions corresponding to the candidate
regions, constructing a binary edge map. As final step, using
the Hausdorff distance between the edge map regions and
circular templates with different radii, they decided the OD
among all the candidates.
There are some methods for blood vessels detection in retinal
fundus images such as region growing technique [10],
morphological and thresholding techniques [11], neural
network based approaches [12], statistical classification based
methods [13-14] and hierarchical methods[12]. This paper
presents the optic disc detection and blood vessels detection
techniques based on mathematical morphology on the fundus
images because it is very fast and requires lower computing
power. Therefore the system can be used even on a very poor
computer system.
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 301
Fig -1: OD appearance. (a) Yellowish OD. (b) Brownish OD.
(c) Reddish OD. (d) Whitish OD.
The general flow chart for the optic disc detection and blood
vessels detection is shown in Fig.2
Fig -2: General flow chart for optic disc detection and blood
vessels detection
2. PRE-PROCESSING STAGE
2.1 Image Acquisition
All digital retinal images are taken from patients using the
non-mydriatic retinal fundus camera. The images are stored in
JPEG image format file (.jpg) and taken from "Eye and ENT
General Hospital (Mandalay)". In this research, the retinal
images are taken from the "Eye and ENT General Hospital
(Mandalay)" and also from the websites.
The original (RGB) image is transformed into appropriate
colour space for further processes. And then, filtering
technique is used to reduce the effect of noise. After using the
filtering technique, the noise such as salt and pepper noise are
removed from the image. Then contrast-limited adaptive
histogram equalization (CLAHE) is used for image
enhancement. Unlike histogram, it operates on small data
regions rather than the entire image. This function uses a
contrast-enhancement method that work significantly better
than regular histogram equalization for most images.
2.2 Converting Colors from RGB to HSI
In digital image, the input image can be the RGB (Red, Green,
and Blue) images or other. The RGB image can be described
as M x N x 3 array of colour pixels. In this paper, the RGB
input image is transformed into HSI colour space for further
processes. H component of each RGB pixel is obtained using
the following equation [15]
The saturation component is
Finally, the intensity component is
(a) Original image
(b) HSI image
Fig-3: shows the result of the converting colour from RGB to
HIS image. Fig.3 (a) is the original input image and Fig.3 (b)
is the HSI colour image.
Fundus image
Pre-Processing Stage
Optic Disc Detection
Blood Vessels Detection
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 302
2.3 Filtering Techniques
Noise can cause the trouble in the detection of disease. The
noise contains in the image is reduced by using the filtering
technique such as median filter, averaging filter and wiener
filter.
2.3.1 Median Filter
The median filter is a non-linear filter type and which is used
to reduce the effect of noise without blurring the sharp edge.
The operation of the median filter is – first arrange the pixel
values in either the ascending or descending order and then
compute the median value of the neighborhood pixels.
Fig- 4: (a) Image with noise
Fig-4: (b) Result of median filter
2.3.2 Averaging Filter
Averaging filter is useful for removing grain noise from a
photograph. Each pixel gets set to the average of the pixels in
its neighborhood. The result of the averaging filter is shown in
Fig.5 (b).
Fig-5: (a) Image with noise
Fig-5: (b) Result of averaging filter
2.3.3 Wiener Filter
The wiener filter is used to minimize the mean square error
between input and output image. But the wiener filter requires
knowing the power spectral density of the original image
which is unavailable in practice. The result of the wiener filter
is shown in Fig.6 (b).
Fig-6: (a) Image with noise
Fig-6: (b) Result of wiener filter
According to the result images, the median filter is the best
suit to reduce the effect the noise. And also, it can reduce the
noise without blurring the edge. Therefore, the median filter is
chosen for the filtering purpose.
2.4 Image Enhancement
The result image of the median filter is enhanced by using the
histogram equalization technique. The histogram equalization
technique is used to overcome the uneven-illumination case.
There are two methods to enhance the image: Histogram
equalisation and Adaptive histogram equalisation.
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 303
2.4.1 Histogram Equalisation
It enhances the contrast of the images by transforming the
values in an intensity image. The procedures of the histogram
equalisation are-
(i) Find the running sum of the pixel values
(ii) Normalise the values by dividing the total number of
pixels
(iii) Multiply by the maximum gray-level value and round the
value
The result of the histogram equalization is shown in Fig.7 (b)
Fig: 7- (a) Original Image
Fig-7: (b) Result of histogram Equalisation
2.4.2 Adaptive Histogram Equalisation
Unlike histogram, it operates on small data regions (tiles)
rather than the entire image. And also contrast enhancement
can be limited in order to avoid amplifying the noise which
might be presented in the image. So, Adaptive histogram
equalisation technique works significantly better than regular
histogram equalization for most images.
Fig-8: (a) Original Image
Fig-8: (b) Result of adaptive histogram equalization
According to results, the adaptive histogram equalisation
technique is used for image enhancement purpose.
3. OPTIC DISC DETECTION AND ELIMINATION
There are many methods to detect the optic disc and the blood
vessels for example; K-means clustering algorithm, Fuzzy C
means, Mathematical Morphology and so on. The
disadvantage of the Fuzzy C means ; for noisy images it does
not take into account spatial Information, which makes it
sensitive to noise & other image artifacts based on distribution
of pixel intensity, so it is sensitive to intensity variations in the
illumination.
The disadvantage of the K-means clustering algorithm is: K
the number of clusters must be determined; it does not yield
the same result each time the algorithm is executed.
But for the mathematical morphology, it doesn't have these
disadvantages and it doesn't need highly efficient computer, so
it can work on a poor computer. Therefore, it is suitable for
the rural area in developing country. So, the mathematical
morphology is chosen for the optic disc and blood vessels
detection.
3.1. Mathematical Morphology
The basic mathematical morphology operators include the
following:
 Dilation
 Erosion
 Closing
 Opening
Dilation adds pixels to the boundaries of objects in an image.
Erosion removes pixels on object boundaries.
The morphological open operation is an erosion followed by a
dilation, using the same structuring element for both
operations.
A◦B = (AΘB)⊕B
The closing operator is a dilation followed by erosion.
A●B = (A ⊕B)ΘB
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 304
3.2. Thresholding
The Otsu's thresholding technique is applied to the image to
detect the desire area.
Equations of Otsu algorithm are
σ2
Between(T)=wB(T)wo(T)[µB(T)-µo(T)]2
wB(T) = , µB =
w0(T) = , µO=
 σ2
Between(T)= Between-class variance
 w=weight, B=background of the image, o=object of
image
 µ= combined mean,
 T= threshold value
The optic disc is the largest and brightest region of the image.
The optic disc detection is useful because it can reduce the
false positive detection of the exudates. Fig.5 shows the
general flow chart of the optic disc detection.
Fig-5: Flow Chart of Optic disc Detection
(a) (b)
(c) (d)
(e)
Fig-6: (a) Closing (b) Thresholding (c) Filling
(d) Reconstruction (e) Detected Optic disc
The results of the optic disc detection are shown in Fig.6 (a),
(b), (c), (d) and (e). Fig.6 (a) shows the result of the closing
operator. To remove the vessels, the closing (morphology)
operator is applied. When the closing operator is used, the
choice of structuring element is important. The closing is a
dilation followed by an erosion that joins the very close
objects together.Then, the result image is binarized by
thresholding using Otsu algorithm [16]. The result image is
shown in Fig.6 (b).The filling operator is applied to fill the
holes in the image and the result image is shown in Fig.6 (c).
The result image is reconstructed by using the morphology
reconstruction and is shown in Fig.6 (d). To detect the optic
disc region, the Otsu algorithm is applied on the difference
between the original image and the reconstructed image.The
optic disc detected area is shown in Fig.6 (e).
4. BLOOD VESSELS DETECTION AND
ELIMINATION
The blood vessels detection and elimination is also important
as the optic disc detection for further process because the optic
disc and the blood vessels are the normal features of the
images. The general flow chart of the blood vessels detection
is shown in Fig.7. To detect the blood vessels, first the input
image is converted into grayscale image due to strengthen the
appearance of the blood vessels. Then the median filtering and
the CLAHE techniques are used for reducing noise and image
enhancement purposes. Then, the closing and the filling
operators are used to close the same intensity values and fill
the holes in the vessels.
I(Difference)=ϕ(B1)
(I)-fill(I) [1]
RGB to HSI
Median Filter
Contrast-limited adaptive Histogram
Equalization
histogram equalizationClosing
Thresholding
Morphological
reconstruction
Binarization
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 305
Where, B1 is the morphological structuring element.
Then the Otsu's thresholding technique is applied to the result
image to obtain the vessels area. The blood vessels detected
area is shown in Fig.8 (e).
I(vessels)=Thresholding(I(Difference)) [2]
Fig-7: Flow Chart of Blood Vessels Detection
(a) (b)
(c) (d)
(e)
Fig-8:(a) Closing (b) Filling (c) Difference (d) Thresholding
(e) Detected Blood Vessels
The results of the blood vessels detection are shown in Fig.8
(a), (b), (c), (d) and (e).The closing and the filling operators
are used to close the same intensity values and fill the holes in
the vessels. The result of the closing and the filling of the
images are shown in Fig.8 (a) and 8 (b). To get the blood
vessels area, Otsu algorithm is applied to the difference image
between the closing and the filling images. The result images
are shown in Fig.8 (c) and (d). The blood vessels detected area
is shown in Fig.8 (e).
5. DISCUSSION
In this paper, the mathematical morphology is applied to
detect the optic disc and the blood vessels. Detection of optic
disc and the blood vessels is the important step for further
processes in the detection of diabetic retinopathy. And also it
helps the ophthalmologists to detect the optic disc and the
vessels more easily and faster. Even on a poor computer
system, this technique can work effectively. This method can
work faster and it can process within a few minutes.
Therefore, this method is suitable for rural area in developing
countries.
6. CONCLUSIONS
Mathematical morphology method is used for optic disc and
the blood vessels detections. For these detections, the input
images are taken from the websites and "Eye and ENT
General Hospital (Mandalay). The input image is in RGB
colour space and for the further processes the image is
converted into appropriate colour space. The median filter,
averaging filter and the wiener filter are used for the noise
reduction. Among these filter, median filter is chosen for the
filtering purpose because median filter can reduce the effect of
noise without blurring the edge. And then, the adaptive
histogram equalisation technique is used for image
enhancement. It is also used to overcome the uneven
illumination case. Therefore, median filter and the adaptive
histogram equalisation techniques are used for noise reduction
and image enhancement purposes. Optic disc detection and the
blood vessels detection are the major role in the screening of
eye diseases. The results of this work can be used in the future
RGB to Gray
Median Filter
Contrast-limited adaptive Histogram
Equalization
histogram equalizationClosing
Filling
Thresholding
Blood Vessels
Detection
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 306
processes such as the screening of diabetic retinopathy,
glaucoma and so on. This detection method doesn't need the
highly efficient computer so it is suitable for rural area in
developing countries.
ACKNOWLEDGEMENT
The author would like to thank to his supervisor Dr.Aung Soe
Khaing who gives the good advices for this research. The
author also would like to acknowledge the head of Department
of Electronic Engineering, Mandalay Technological
University. The author is highly grateful to all his teachers,
Department of Electronic Engineering, Mandalay
Technological University. And also the author would like to
thank to all doctors in “EYE and ENT General Hospital”
(Mandalay).
REFERENCES
[1]. W. Hsu, P.M.D.S Pallawala, Mong Li Lee et al., “The
Role of Domain Knowledge in the Detection of Retinal
Hard Exudates,” In Proceedings of the 2001 IEEE
Computer Society Conference on Computer Vision and
Pattern Recognition 2, 2001, pp.II-246 - II-251.
[2]. C.I. Sanchez, R. Hornero, M.I. Lopez et al., “Retinal
Image Analysis to Detect and Quantify Lesions
Associated with Diabetic Retinopathy,” In Proceedings
of 26th IEEE Annual International Conference on
Engineering in Medicine and Biology Society (EMBC)
1, 2004, pp.1624 – 1627.
[3]. C.Sinthanayothin, J. F. Boyce, H. L. Cook, and T.
H.Williamson, “Automated localisation of the optic
disc, fovea, and retinal blood vessels from digital
colour fundus images,” Br. J. Ophthalmol., vol. 83,
pp.902–910, 1999.
[4]. A. Osareh, M. Mirmehdi, B. Thomas, and R. Markham,
“Automated identification of diabetic retinal exudates
in digital colour images,” Br.J. Ophthalmol., vol. 87,
pp. 1220–1223, 2003.
[5]. Yang, S.Huang, N.Rao M, “An automatic hybrid
Method For Retinal Blood Vessel Extraction”,
International Journal of Applied Math. Comput.
Sci,2008, Vol18,No.3, pp 399-407,2008
[6]. A. Osareh, M. Mirmehdi, B. Thomas, and R. Markham,
“Comparisonof colour spaces for optic disc localisation
in retinal images,” in Proc.16th Int. Conf. Pattern
Recognit., 2002, pp. 743–746.
[7]. J. Lowell, A. Hunter, D. Steel, A. Basu, R. Ryder, E.
Fletcher, and L. Kennedy, “Optic nerve head
segmentation,” IEEE Trans. Med. Imag., vol. 23, no. 2,
pp. 256–264, Feb. 2004.
[8]. J. Xu, O. Chutatape, E. Sung, C. Zheng, and P. C. T.
Kuan, “Optic disk feature extraction via modified
deformable model technique for glaucoma analysis,”
Pattern Recognit., vol. 40, no. 7, pp. 2063–2076, 2007.
[9]. M. Lalonde, M. Beaulieu, and L. Gagnon, “Fast and
robust optic disk detection using pyramidal
decomposition and Hausdorff-based template
matching,” IEEE Trans. Med. Imag., vol. 20, no. 11,
pp. 1193–1200, Nov. 2001.
[10]. C.Sinthanayothin, J.F.Boyce, T.Williamson, H.Cook,
E.Mensah,andD.Usher, “Automated detection of
diabetic retinopathy on digital fundus images”,
Diabetic medicine, Vol 19, pp.105- 112, 2002.
[11]. A.Frame, P.Undrill, M.Cree, J.Olson, K.McHardy,
P.Sharp and J.Forrester, “A comparision of computer
based classification methods applied to the detection of
microneurysms in ophthalmic fluroscein angiograms”,
computer Biol. Med, Vol.28, pp.225-238, 1998
[12]. G.Gardner, D.Keating, T.Williamson, and .Elliot,
“Detection of Diabetic retinopathy using neural
network analysis of fundus images”, Br. J.
Opthalmology., Vol.80, pp 937-948,1996.
[13]. B.M.Ege, O.K.Hejlesen, O.VLarsen, K.Moller,
B.Jennings, D.Kerrr, D.A.Cavan, “Screening for
diabetic retinopathy using computer based image
analysis and statistical classification”, computer
Methods Programs Biomed, Vol63, pp.165-175, 2000.
[14]. D.Fleming, S.Philip, K.A.Goatman, J.A.Olson,
P.F.Sharp, “Automated microaneurysm detection using
local contrast normalisation and local vessel detection”,
IEEE transactions on Medical Imaging, vol.25,
pp.1223-1232, 2006.
[15]. Rafael C. Gonzalez, Richard E. Woods, Steven L.
Eddins, Digital Image Processing Using MATLAB,
2nd
Edition, Prentice-Hall, 2002.
[16]. A. Sopharak, B. Uyyanonvara, S. Barman et al.,
“Automatic detection of diabetic retinopathy exudates
from non-dilated retinal images using mathematical
morphology methods,” Computer Medical Imaging and
Graphics 32(8), 2008, pp. 720-727.
BIOGRAPHIES
Oakar Phyo received his Bachelor degree in
Electronics from Technological University
(Mandalay), Myanmar in 2012. He is a master
candidate of Electronics Engineering
Department at Mandalay Technological
University. His interest research include image processing and
biomedical.
He received Bachelor of Engineering in
Electronics from Mandalay Technological
University, Mandalay, Myanmar, in 2004
and Master of Engineering in Electronics
from Yangon Technological University,
Yangon, Myanmar, in 2006. He has continued his PhD
dissertation in 2006. From October 2008 to September 2010,
he was doing research on Spatial Frequency Analysis of the
Human Brain at the Institute of Biomedical Engineering and
Informatics, Technical University Ilmenau, Germany. He
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 307
received his PhD in Electronic Engineering from Mandalay
Technological University, Mandalay, Myanmar, in 2011.
He is now Associate Professor at Department of Electronic
Engineering, Mandalay Technological University, and
Mandalay, Myanmar. His research interests include computer
based Electrocardiogram (ECG) system, biomedical signal and
image processing, bioinstrumentation and telemedicine. Dr.
Aung Soe Khaing was responsible for the ECG laboratory for
the biomedical engineering students at the Institute of
Biomedical Engineering and Informatics, Technical
University Ilmenau, Germany from October 2008 to
September 2010.

More Related Content

What's hot

Enhancement Of Retinal Fundus Image Using 2-D GABOR WAVELET Transform
Enhancement Of Retinal Fundus Image Using 2-D GABOR WAVELET TransformEnhancement Of Retinal Fundus Image Using 2-D GABOR WAVELET Transform
Enhancement Of Retinal Fundus Image Using 2-D GABOR WAVELET TransformMonika Rout
 
Automatic Blood Vessels Segmentation of Retinal Images
Automatic Blood Vessels Segmentation of Retinal ImagesAutomatic Blood Vessels Segmentation of Retinal Images
Automatic Blood Vessels Segmentation of Retinal ImagesHarish Rajula
 
Diabetic Retinopathy Analysis using Fundus Image
Diabetic Retinopathy Analysis using Fundus ImageDiabetic Retinopathy Analysis using Fundus Image
Diabetic Retinopathy Analysis using Fundus ImageManjushree Mashal
 
Automatic Detection of Non-Proliferative Diabetic Retinopathy Using Fundus Im...
Automatic Detection of Non-Proliferative Diabetic Retinopathy Using Fundus Im...Automatic Detection of Non-Proliferative Diabetic Retinopathy Using Fundus Im...
Automatic Detection of Non-Proliferative Diabetic Retinopathy Using Fundus Im...iosrjce
 
Undergraduate Project Email
Undergraduate Project    EmailUndergraduate Project    Email
Undergraduate Project EmailTanveeChheda
 
Automated Screening of Diabetic Retinopathy Using Image Processing
Automated Screening of Diabetic Retinopathy Using Image ProcessingAutomated Screening of Diabetic Retinopathy Using Image Processing
Automated Screening of Diabetic Retinopathy Using Image Processingiosrjce
 
Diabetic Retinopathy Detection using Neural Networking
Diabetic Retinopathy Detection using Neural NetworkingDiabetic Retinopathy Detection using Neural Networking
Diabetic Retinopathy Detection using Neural Networkingijtsrd
 
EXUDATES DETECTION FROM DIGITAL FUNDUS IMAGE OF DIABETIC RETINOPATHY
EXUDATES DETECTION FROM DIGITAL FUNDUS IMAGE OF DIABETIC RETINOPATHYEXUDATES DETECTION FROM DIGITAL FUNDUS IMAGE OF DIABETIC RETINOPATHY
EXUDATES DETECTION FROM DIGITAL FUNDUS IMAGE OF DIABETIC RETINOPATHYijabjournal
 
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
 
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
 
Diagnosis of Diabetic Retinopathy
Diagnosis of Diabetic RetinopathyDiagnosis of Diabetic Retinopathy
Diagnosis of Diabetic RetinopathyIJERA Editor
 
AUTOMATED DETECTION OF HARD EXUDATES IN FUNDUS IMAGES USING IMPROVED OTSU THR...
AUTOMATED DETECTION OF HARD EXUDATES IN FUNDUS IMAGES USING IMPROVED OTSU THR...AUTOMATED DETECTION OF HARD EXUDATES IN FUNDUS IMAGES USING IMPROVED OTSU THR...
AUTOMATED DETECTION OF HARD EXUDATES IN FUNDUS IMAGES USING IMPROVED OTSU THR...IJCSES Journal
 
Review on Optic Disc Localization Techniques
Review on Optic Disc Localization TechniquesReview on Optic Disc Localization Techniques
Review on Optic Disc Localization Techniquesrahulmonikasharma
 
A novel-approach-for-retinal-lesion-detection-indiabetic-retinopathy-images
A novel-approach-for-retinal-lesion-detection-indiabetic-retinopathy-imagesA novel-approach-for-retinal-lesion-detection-indiabetic-retinopathy-images
A novel-approach-for-retinal-lesion-detection-indiabetic-retinopathy-imagesSrinivasaRaoNaga
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)ijceronline
 
H0366051058
H0366051058H0366051058
H0366051058theijes
 

What's hot (20)

Enhancement Of Retinal Fundus Image Using 2-D GABOR WAVELET Transform
Enhancement Of Retinal Fundus Image Using 2-D GABOR WAVELET TransformEnhancement Of Retinal Fundus Image Using 2-D GABOR WAVELET Transform
Enhancement Of Retinal Fundus Image Using 2-D GABOR WAVELET Transform
 
Automatic Blood Vessels Segmentation of Retinal Images
Automatic Blood Vessels Segmentation of Retinal ImagesAutomatic Blood Vessels Segmentation of Retinal Images
Automatic Blood Vessels Segmentation of Retinal Images
 
PROJECT FINAL PPT
PROJECT FINAL PPTPROJECT FINAL PPT
PROJECT FINAL PPT
 
Diabetic Retinopathy Analysis using Fundus Image
Diabetic Retinopathy Analysis using Fundus ImageDiabetic Retinopathy Analysis using Fundus Image
Diabetic Retinopathy Analysis using Fundus Image
 
Automatic Detection of Non-Proliferative Diabetic Retinopathy Using Fundus Im...
Automatic Detection of Non-Proliferative Diabetic Retinopathy Using Fundus Im...Automatic Detection of Non-Proliferative Diabetic Retinopathy Using Fundus Im...
Automatic Detection of Non-Proliferative Diabetic Retinopathy Using Fundus Im...
 
Undergraduate Project Email
Undergraduate Project    EmailUndergraduate Project    Email
Undergraduate Project Email
 
Automated Screening of Diabetic Retinopathy Using Image Processing
Automated Screening of Diabetic Retinopathy Using Image ProcessingAutomated Screening of Diabetic Retinopathy Using Image Processing
Automated Screening of Diabetic Retinopathy Using Image Processing
 
Diabetic Retinopathy Detection using Neural Networking
Diabetic Retinopathy Detection using Neural NetworkingDiabetic Retinopathy Detection using Neural Networking
Diabetic Retinopathy Detection using Neural Networking
 
EXUDATES DETECTION FROM DIGITAL FUNDUS IMAGE OF DIABETIC RETINOPATHY
EXUDATES DETECTION FROM DIGITAL FUNDUS IMAGE OF DIABETIC RETINOPATHYEXUDATES DETECTION FROM DIGITAL FUNDUS IMAGE OF DIABETIC RETINOPATHY
EXUDATES DETECTION FROM DIGITAL FUNDUS IMAGE OF DIABETIC RETINOPATHY
 
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
 
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
 
PREVALENCE EVALUATION OF DIABETIC RETINOPATHY
PREVALENCE EVALUATION OF DIABETIC RETINOPATHYPREVALENCE EVALUATION OF DIABETIC RETINOPATHY
PREVALENCE EVALUATION OF DIABETIC RETINOPATHY
 
Diagnosis of Diabetic Retinopathy
Diagnosis of Diabetic RetinopathyDiagnosis of Diabetic Retinopathy
Diagnosis of Diabetic Retinopathy
 
[IJET-V1I3P6]
[IJET-V1I3P6] [IJET-V1I3P6]
[IJET-V1I3P6]
 
AUTOMATED DETECTION OF HARD EXUDATES IN FUNDUS IMAGES USING IMPROVED OTSU THR...
AUTOMATED DETECTION OF HARD EXUDATES IN FUNDUS IMAGES USING IMPROVED OTSU THR...AUTOMATED DETECTION OF HARD EXUDATES IN FUNDUS IMAGES USING IMPROVED OTSU THR...
AUTOMATED DETECTION OF HARD EXUDATES IN FUNDUS IMAGES USING IMPROVED OTSU THR...
 
Review on Optic Disc Localization Techniques
Review on Optic Disc Localization TechniquesReview on Optic Disc Localization Techniques
Review on Optic Disc Localization Techniques
 
A novel-approach-for-retinal-lesion-detection-indiabetic-retinopathy-images
A novel-approach-for-retinal-lesion-detection-indiabetic-retinopathy-imagesA novel-approach-for-retinal-lesion-detection-indiabetic-retinopathy-images
A novel-approach-for-retinal-lesion-detection-indiabetic-retinopathy-images
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)
 
A045010107
A045010107A045010107
A045010107
 
H0366051058
H0366051058H0366051058
H0366051058
 

Viewers also liked

Deep learning from a novice perspective
Deep learning from a novice perspectiveDeep learning from a novice perspective
Deep learning from a novice perspectiveAnirban Santara
 
Bio medical ieee 2012 projects @ hades infotech
Bio medical ieee 2012 projects @ hades infotechBio medical ieee 2012 projects @ hades infotech
Bio medical ieee 2012 projects @ hades infotechHades InfoTech Pvt Ltd
 
Pediatric pain assessment
Pediatric pain assessmentPediatric pain assessment
Pediatric pain assessmentHilary Flint
 
40-49 Health Dossier V5
40-49 Health Dossier V540-49 Health Dossier V5
40-49 Health Dossier V5Quintella Koh
 
Developmentally supportive neonatal care
Developmentally supportive neonatal careDevelopmentally supportive neonatal care
Developmentally supportive neonatal careLaxmikant Deshmukh
 
Assessment of pain
Assessment of painAssessment of pain
Assessment of paindeepmbbs04
 
Compare and contrast
Compare and contrastCompare and contrast
Compare and contrastMable2003
 
Alien trailer
Alien trailerAlien trailer
Alien trailerSamW1
 
TÁC HẠI CỦA THUỐC LÁ
TÁC HẠI CỦA THUỐC LÁTÁC HẠI CỦA THUỐC LÁ
TÁC HẠI CỦA THUỐC LÁHồ Hải
 
An approach for ids by combining svm and ant colony algorithm
An approach for ids by combining svm and ant colony algorithmAn approach for ids by combining svm and ant colony algorithm
An approach for ids by combining svm and ant colony algorithmeSAT Publishing House
 
Finite element analysis of aluminium alloys for their vibration characteristics
Finite element analysis of aluminium alloys for their vibration characteristicsFinite element analysis of aluminium alloys for their vibration characteristics
Finite element analysis of aluminium alloys for their vibration characteristicseSAT Publishing House
 
Optimization of a multistorey building by optimum
Optimization of a multistorey building by optimumOptimization of a multistorey building by optimum
Optimization of a multistorey building by optimumeSAT Publishing House
 

Viewers also liked (20)

Deep learning from a novice perspective
Deep learning from a novice perspectiveDeep learning from a novice perspective
Deep learning from a novice perspective
 
Bio medical ieee 2012 projects @ hades infotech
Bio medical ieee 2012 projects @ hades infotechBio medical ieee 2012 projects @ hades infotech
Bio medical ieee 2012 projects @ hades infotech
 
S0733862709001199
S0733862709001199S0733862709001199
S0733862709001199
 
Ls 3
Ls 3Ls 3
Ls 3
 
Pain management in neonates
Pain management in neonatesPain management in neonates
Pain management in neonates
 
Drill 9
Drill 9Drill 9
Drill 9
 
Pediatric pain assessment
Pediatric pain assessmentPediatric pain assessment
Pediatric pain assessment
 
40-49 Health Dossier V5
40-49 Health Dossier V540-49 Health Dossier V5
40-49 Health Dossier V5
 
Developmentally supportive neonatal care
Developmentally supportive neonatal careDevelopmentally supportive neonatal care
Developmentally supportive neonatal care
 
Assessment of pain
Assessment of painAssessment of pain
Assessment of pain
 
Fall Research Collaborative meeting
Fall Research Collaborative meetingFall Research Collaborative meeting
Fall Research Collaborative meeting
 
Computer and Information Technology
Computer and Information TechnologyComputer and Information Technology
Computer and Information Technology
 
Intelligent home heating system
Intelligent home heating systemIntelligent home heating system
Intelligent home heating system
 
Compare and contrast
Compare and contrastCompare and contrast
Compare and contrast
 
English focus
English focusEnglish focus
English focus
 
Alien trailer
Alien trailerAlien trailer
Alien trailer
 
TÁC HẠI CỦA THUỐC LÁ
TÁC HẠI CỦA THUỐC LÁTÁC HẠI CỦA THUỐC LÁ
TÁC HẠI CỦA THUỐC LÁ
 
An approach for ids by combining svm and ant colony algorithm
An approach for ids by combining svm and ant colony algorithmAn approach for ids by combining svm and ant colony algorithm
An approach for ids by combining svm and ant colony algorithm
 
Finite element analysis of aluminium alloys for their vibration characteristics
Finite element analysis of aluminium alloys for their vibration characteristicsFinite element analysis of aluminium alloys for their vibration characteristics
Finite element analysis of aluminium alloys for their vibration characteristics
 
Optimization of a multistorey building by optimum
Optimization of a multistorey building by optimumOptimization of a multistorey building by optimum
Optimization of a multistorey building by optimum
 

Similar to Automatic detection of optic disc and blood vessels from retinal images using image processing techniques

Retinal blood vessel extraction and optical disc removal
Retinal blood vessel extraction and optical disc removalRetinal blood vessel extraction and optical disc removal
Retinal blood vessel extraction and optical disc removaleSAT Journals
 
SURVEY OF GLAUCOMA DETECTION METHODS
SURVEY OF GLAUCOMA DETECTION METHODSSURVEY OF GLAUCOMA DETECTION METHODS
SURVEY OF GLAUCOMA DETECTION METHODSEditor IJMTER
 
Classification of appendicitis based on ultrasound image
Classification of appendicitis based on ultrasound imageClassification of appendicitis based on ultrasound image
Classification of appendicitis based on ultrasound imageeSAT Publishing House
 
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 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
 
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 - Detection of Diabetic Retinopathy using Local Binary Pattern
IRJET - Detection of Diabetic Retinopathy using Local Binary PatternIRJET - Detection of Diabetic Retinopathy using Local Binary Pattern
IRJET - Detection of Diabetic Retinopathy using Local Binary PatternIRJET Journal
 
AN AUTOMATIC SCREENING METHOD TO DETECT OPTIC DISC IN THE RETINA
AN AUTOMATIC SCREENING METHOD TO DETECT OPTIC DISC IN THE RETINAAN AUTOMATIC SCREENING METHOD TO DETECT OPTIC DISC IN THE RETINA
AN AUTOMATIC SCREENING METHOD TO DETECT OPTIC DISC IN THE RETINAijait
 
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- A Novel Algorithm for Detection of Papilledema in Luminosity and C...
IRJET-  	  A Novel Algorithm for Detection of Papilledema in Luminosity and C...IRJET-  	  A Novel Algorithm for Detection of Papilledema in Luminosity and C...
IRJET- A Novel Algorithm for Detection of Papilledema in Luminosity and C...IRJET Journal
 
A comparison of image segmentation techniques, otsu and watershed for x ray i...
A comparison of image segmentation techniques, otsu and watershed for x ray i...A comparison of image segmentation techniques, otsu and watershed for x ray i...
A comparison of image segmentation techniques, otsu and watershed for x ray i...eSAT Journals
 
Detection of exudates draft
Detection of exudates draftDetection of exudates draft
Detection of exudates draftnitheshksuvarna
 
A review on implementation of algorithms for detection of diabetic retinopathy
A review on implementation of algorithms for detection of diabetic retinopathyA review on implementation of algorithms for detection of diabetic retinopathy
A review on implementation of algorithms for detection of diabetic retinopathyeSAT Publishing House
 
A review on implementation of algorithms for detection of diabetic retinopathy
A review on implementation of algorithms for detection of diabetic retinopathyA review on implementation of algorithms for detection of diabetic retinopathy
A review on implementation of algorithms for detection of diabetic retinopathyeSAT Journals
 
Detection of exudates draft
Detection of exudates draftDetection of exudates draft
Detection of exudates draftnitheshksuvarna
 
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
 
IRJET- Identifying the Blood Group using Image Processing
IRJET-  	  Identifying the Blood Group using Image ProcessingIRJET-  	  Identifying the Blood Group using Image Processing
IRJET- Identifying the Blood Group using Image ProcessingIRJET Journal
 
A Novel Framework For Preprocessing Of Breast Ultra Sound Images By Combining...
A Novel Framework For Preprocessing Of Breast Ultra Sound Images By Combining...A Novel Framework For Preprocessing Of Breast Ultra Sound Images By Combining...
A Novel Framework For Preprocessing Of Breast Ultra Sound Images By Combining...IRJET 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
 

Similar to Automatic detection of optic disc and blood vessels from retinal images using image processing techniques (20)

Retinal blood vessel extraction and optical disc removal
Retinal blood vessel extraction and optical disc removalRetinal blood vessel extraction and optical disc removal
Retinal blood vessel extraction and optical disc removal
 
SURVEY OF GLAUCOMA DETECTION METHODS
SURVEY OF GLAUCOMA DETECTION METHODSSURVEY OF GLAUCOMA DETECTION METHODS
SURVEY OF GLAUCOMA DETECTION METHODS
 
Classification of appendicitis based on ultrasound image
Classification of appendicitis based on ultrasound imageClassification of appendicitis based on ultrasound image
Classification of appendicitis based on ultrasound image
 
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 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...
 
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 - Detection of Diabetic Retinopathy using Local Binary Pattern
IRJET - Detection of Diabetic Retinopathy using Local Binary PatternIRJET - Detection of Diabetic Retinopathy using Local Binary Pattern
IRJET - Detection of Diabetic Retinopathy using Local Binary Pattern
 
AN AUTOMATIC SCREENING METHOD TO DETECT OPTIC DISC IN THE RETINA
AN AUTOMATIC SCREENING METHOD TO DETECT OPTIC DISC IN THE RETINAAN AUTOMATIC SCREENING METHOD TO DETECT OPTIC DISC IN THE RETINA
AN AUTOMATIC SCREENING METHOD TO DETECT OPTIC DISC IN THE RETINA
 
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- A Novel Algorithm for Detection of Papilledema in Luminosity and C...
IRJET-  	  A Novel Algorithm for Detection of Papilledema in Luminosity and C...IRJET-  	  A Novel Algorithm for Detection of Papilledema in Luminosity and C...
IRJET- A Novel Algorithm for Detection of Papilledema in Luminosity and C...
 
A comparison of image segmentation techniques, otsu and watershed for x ray i...
A comparison of image segmentation techniques, otsu and watershed for x ray i...A comparison of image segmentation techniques, otsu and watershed for x ray i...
A comparison of image segmentation techniques, otsu and watershed for x ray i...
 
Detection of exudates draft
Detection of exudates draftDetection of exudates draft
Detection of exudates draft
 
A review on implementation of algorithms for detection of diabetic retinopathy
A review on implementation of algorithms for detection of diabetic retinopathyA review on implementation of algorithms for detection of diabetic retinopathy
A review on implementation of algorithms for detection of diabetic retinopathy
 
A review on implementation of algorithms for detection of diabetic retinopathy
A review on implementation of algorithms for detection of diabetic retinopathyA review on implementation of algorithms for detection of diabetic retinopathy
A review on implementation of algorithms for detection of diabetic retinopathy
 
Detection of exudates draft
Detection of exudates draftDetection of exudates draft
Detection of exudates draft
 
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
 
IRJET- Identifying the Blood Group using Image Processing
IRJET-  	  Identifying the Blood Group using Image ProcessingIRJET-  	  Identifying the Blood Group using Image Processing
IRJET- Identifying the Blood Group using Image Processing
 
SYSTEM BASED ON THE NEURAL NETWORK FOR THE DIAGNOSIS OF DIABETIC RETINOPATHY
SYSTEM BASED ON THE NEURAL NETWORK FOR THE DIAGNOSIS OF DIABETIC RETINOPATHYSYSTEM BASED ON THE NEURAL NETWORK FOR THE DIAGNOSIS OF DIABETIC RETINOPATHY
SYSTEM BASED ON THE NEURAL NETWORK FOR THE DIAGNOSIS OF DIABETIC RETINOPATHY
 
A Novel Framework For Preprocessing Of Breast Ultra Sound Images By Combining...
A Novel Framework For Preprocessing Of Breast Ultra Sound Images By Combining...A Novel Framework For Preprocessing Of Breast Ultra Sound Images By Combining...
A Novel Framework For Preprocessing Of Breast Ultra Sound Images By Combining...
 
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
 

More from eSAT Publishing House

Likely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnamLikely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnameSAT Publishing House
 
Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...eSAT Publishing House
 
Hudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnamHudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnameSAT Publishing House
 
Groundwater investigation using geophysical methods a case study of pydibhim...
Groundwater investigation using geophysical methods  a case study of pydibhim...Groundwater investigation using geophysical methods  a case study of pydibhim...
Groundwater investigation using geophysical methods a case study of pydibhim...eSAT Publishing House
 
Flood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, indiaFlood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, indiaeSAT Publishing House
 
Enhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity buildingEnhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity buildingeSAT Publishing House
 
Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...eSAT Publishing House
 
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...eSAT Publishing House
 
Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...eSAT Publishing House
 
Shear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a reviewShear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a revieweSAT Publishing House
 
Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...eSAT Publishing House
 
Risk analysis and environmental hazard management
Risk analysis and environmental hazard managementRisk analysis and environmental hazard management
Risk analysis and environmental hazard managementeSAT Publishing House
 
Review study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear wallsReview study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear wallseSAT Publishing House
 
Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...eSAT Publishing House
 
Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...eSAT Publishing House
 
Coastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of indiaCoastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of indiaeSAT Publishing House
 
Can fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structuresCan fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structureseSAT Publishing House
 
Assessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildingsAssessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildingseSAT Publishing House
 
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...eSAT Publishing House
 
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...eSAT Publishing House
 

More from eSAT Publishing House (20)

Likely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnamLikely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnam
 
Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...
 
Hudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnamHudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnam
 
Groundwater investigation using geophysical methods a case study of pydibhim...
Groundwater investigation using geophysical methods  a case study of pydibhim...Groundwater investigation using geophysical methods  a case study of pydibhim...
Groundwater investigation using geophysical methods a case study of pydibhim...
 
Flood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, indiaFlood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, india
 
Enhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity buildingEnhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity building
 
Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...
 
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
 
Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...
 
Shear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a reviewShear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a review
 
Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...
 
Risk analysis and environmental hazard management
Risk analysis and environmental hazard managementRisk analysis and environmental hazard management
Risk analysis and environmental hazard management
 
Review study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear wallsReview study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear walls
 
Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...
 
Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...
 
Coastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of indiaCoastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of india
 
Can fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structuresCan fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structures
 
Assessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildingsAssessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildings
 
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
 
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
 

Recently uploaded

AIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech studentsAIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech studentsvanyagupta248
 
Introduction to Robotics in Mechanical Engineering.pptx
Introduction to Robotics in Mechanical Engineering.pptxIntroduction to Robotics in Mechanical Engineering.pptx
Introduction to Robotics in Mechanical Engineering.pptxhublikarsn
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaOmar Fathy
 
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKARHAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKARKOUSTAV SARKAR
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdfKamal Acharya
 
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptxS1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptxSCMS School of Architecture
 
Hospital management system project report.pdf
Hospital management system project report.pdfHospital management system project report.pdf
Hospital management system project report.pdfKamal Acharya
 
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments""Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"mphochane1998
 
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
COST-EFFETIVE  and Energy Efficient BUILDINGS ptxCOST-EFFETIVE  and Energy Efficient BUILDINGS ptx
COST-EFFETIVE and Energy Efficient BUILDINGS ptxJIT KUMAR GUPTA
 
Introduction to Data Visualization,Matplotlib.pdf
Introduction to Data Visualization,Matplotlib.pdfIntroduction to Data Visualization,Matplotlib.pdf
Introduction to Data Visualization,Matplotlib.pdfsumitt6_25730773
 
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills KuwaitKuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwaitjaanualu31
 
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...drmkjayanthikannan
 
UNIT 4 PTRP final Convergence in probability.pptx
UNIT 4 PTRP final Convergence in probability.pptxUNIT 4 PTRP final Convergence in probability.pptx
UNIT 4 PTRP final Convergence in probability.pptxkalpana413121
 
Basic Electronics for diploma students as per technical education Kerala Syll...
Basic Electronics for diploma students as per technical education Kerala Syll...Basic Electronics for diploma students as per technical education Kerala Syll...
Basic Electronics for diploma students as per technical education Kerala Syll...ppkakm
 
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdfAldoGarca30
 
PE 459 LECTURE 2- natural gas basic concepts and properties
PE 459 LECTURE 2- natural gas basic concepts and propertiesPE 459 LECTURE 2- natural gas basic concepts and properties
PE 459 LECTURE 2- natural gas basic concepts and propertiessarkmank1
 
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
 
Computer Graphics Introduction To Curves
Computer Graphics Introduction To CurvesComputer Graphics Introduction To Curves
Computer Graphics Introduction To CurvesChandrakantDivate1
 

Recently uploaded (20)

AIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech studentsAIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech students
 
Introduction to Robotics in Mechanical Engineering.pptx
Introduction to Robotics in Mechanical Engineering.pptxIntroduction to Robotics in Mechanical Engineering.pptx
Introduction to Robotics in Mechanical Engineering.pptx
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS Lambda
 
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKARHAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdf
 
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptxS1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
 
Hospital management system project report.pdf
Hospital management system project report.pdfHospital management system project report.pdf
Hospital management system project report.pdf
 
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments""Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
 
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
COST-EFFETIVE  and Energy Efficient BUILDINGS ptxCOST-EFFETIVE  and Energy Efficient BUILDINGS ptx
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
 
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
 
Introduction to Data Visualization,Matplotlib.pdf
Introduction to Data Visualization,Matplotlib.pdfIntroduction to Data Visualization,Matplotlib.pdf
Introduction to Data Visualization,Matplotlib.pdf
 
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills KuwaitKuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
 
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
 
UNIT 4 PTRP final Convergence in probability.pptx
UNIT 4 PTRP final Convergence in probability.pptxUNIT 4 PTRP final Convergence in probability.pptx
UNIT 4 PTRP final Convergence in probability.pptx
 
Basic Electronics for diploma students as per technical education Kerala Syll...
Basic Electronics for diploma students as per technical education Kerala Syll...Basic Electronics for diploma students as per technical education Kerala Syll...
Basic Electronics for diploma students as per technical education Kerala Syll...
 
Signal Processing and Linear System Analysis
Signal Processing and Linear System AnalysisSignal Processing and Linear System Analysis
Signal Processing and Linear System Analysis
 
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
 
PE 459 LECTURE 2- natural gas basic concepts and properties
PE 459 LECTURE 2- natural gas basic concepts and propertiesPE 459 LECTURE 2- natural gas basic concepts and properties
PE 459 LECTURE 2- natural gas basic concepts and properties
 
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
 
Computer Graphics Introduction To Curves
Computer Graphics Introduction To CurvesComputer Graphics Introduction To Curves
Computer Graphics Introduction To Curves
 

Automatic detection of optic disc and blood vessels from retinal images using image processing techniques

  • 1. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 300 AUTOMATIC DETECTION OF OPTIC DISC AND BLOOD VESSELS FROM RETINAL IMAGES USING IMAGE PROCESSING TECHNIQUES Oakar Phyo1 , AungSoe Khaing2 1 M.E Thesis Student, Department of Electronic Engineering, Mandalay Technological University, Mandalay, Myanmar 2 Associate Professor, Department of Electronic Engineering, Mandalay Technological University, Mandalay, Myanmar Abstract Diabetic retinopathy is the common cause of blindness. This paper presents the mathematical morphology method to detect and eliminate the optic disc (OD) and the blood vessels. Detection of optic disc and the blood vessels are the necessary steps in the detection of diabetic retinopathy because the blood vessels and the optic disc are the normal features of the retinal image. And also, the optic disc and the exudates are the brightest portion of the image. Detection of optic disc and the blood vessels can help the ophthalmologists to detect the diseases earlier and faster. Optic disc and the blood vessels are detected and eliminated by using mathematical morphology methods such as closing, filling, morphological reconstruction and Otsu algorithm. The objective of this paper is to detect the normal features of the image. By using the result, the ophthalmologists can detect the diseases easily. Keywords: Blood vessels, Diabetic retinopathy, mathematical morphology, Otsu algorithm, optic disc (OD) ----------------------------------------------------------------------***------------------------------------------------------------------------ 1. INTRODUCTION The visions of many people in the world are threatened by the diabetic retinopathy. Diabetic retinopathy is the eye disease that causes the blindness or blurs the visions. It arises due to the high sugar level in the blood. According to the research, the screening of diabetic retinopathy can reduce the risk of blindness by 50% [1]-[2]. Therefore, early detection could limit the severity of the disease and treating the disease more efficiently. The optic disc detection is an important step to identify the other fundus features. The optic disc can be seen as the elliptical shape in the eye fundus image. Its size varies from one person to another, between one-tenth and one-fifth of the image [3]. In colour image, it appears as the bright yellowish region as the exudates. The optic disc is the normal feature of the image but the exudates are the abnormal case. Detection the optic disc can be used to decrease the false positive in the detection of the exudates [4]. And also the detection of the blood vessels is as important as the detection of the optic disc because the optic disc and the blood vessels are the normal features of the image. Manual detection of blood vessels is difficult since the appearance of blood vessel in a retinal image is complex and having low contrast [5]. A number of methods for optic disc detection and blood vessels detection have been published.Osarehet al. [6] located the optic disc center by means of template matching and extracted its boundary using a snake initialized on a morphologically enhanced region of the optic disc. Lowell et al. [7] also localized the OD by means of template matching as well as also selected a deformable contour model for its segmentation. Another deformable model-based approach was presented in [8].Another template-matching approach for OD segmentation is the Hausdorff-based template matching presented by Lalondeet al. [9]. Initially, they determined a set of OD candidate regions by means of multiresolution processing through pyramidal decomposition. For each OD region candidate, they calculated a simple confidence value representing the ratio between the mean intensity inside the candidate region and inside its neighborhood. The Canny edge detector and a Rayleigh-based threshold were then applied to the green-band image regions corresponding to the candidate regions, constructing a binary edge map. As final step, using the Hausdorff distance between the edge map regions and circular templates with different radii, they decided the OD among all the candidates. There are some methods for blood vessels detection in retinal fundus images such as region growing technique [10], morphological and thresholding techniques [11], neural network based approaches [12], statistical classification based methods [13-14] and hierarchical methods[12]. This paper presents the optic disc detection and blood vessels detection techniques based on mathematical morphology on the fundus images because it is very fast and requires lower computing power. Therefore the system can be used even on a very poor computer system.
  • 2. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 301 Fig -1: OD appearance. (a) Yellowish OD. (b) Brownish OD. (c) Reddish OD. (d) Whitish OD. The general flow chart for the optic disc detection and blood vessels detection is shown in Fig.2 Fig -2: General flow chart for optic disc detection and blood vessels detection 2. PRE-PROCESSING STAGE 2.1 Image Acquisition All digital retinal images are taken from patients using the non-mydriatic retinal fundus camera. The images are stored in JPEG image format file (.jpg) and taken from "Eye and ENT General Hospital (Mandalay)". In this research, the retinal images are taken from the "Eye and ENT General Hospital (Mandalay)" and also from the websites. The original (RGB) image is transformed into appropriate colour space for further processes. And then, filtering technique is used to reduce the effect of noise. After using the filtering technique, the noise such as salt and pepper noise are removed from the image. Then contrast-limited adaptive histogram equalization (CLAHE) is used for image enhancement. Unlike histogram, it operates on small data regions rather than the entire image. This function uses a contrast-enhancement method that work significantly better than regular histogram equalization for most images. 2.2 Converting Colors from RGB to HSI In digital image, the input image can be the RGB (Red, Green, and Blue) images or other. The RGB image can be described as M x N x 3 array of colour pixels. In this paper, the RGB input image is transformed into HSI colour space for further processes. H component of each RGB pixel is obtained using the following equation [15] The saturation component is Finally, the intensity component is (a) Original image (b) HSI image Fig-3: shows the result of the converting colour from RGB to HIS image. Fig.3 (a) is the original input image and Fig.3 (b) is the HSI colour image. Fundus image Pre-Processing Stage Optic Disc Detection Blood Vessels Detection
  • 3. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 302 2.3 Filtering Techniques Noise can cause the trouble in the detection of disease. The noise contains in the image is reduced by using the filtering technique such as median filter, averaging filter and wiener filter. 2.3.1 Median Filter The median filter is a non-linear filter type and which is used to reduce the effect of noise without blurring the sharp edge. The operation of the median filter is – first arrange the pixel values in either the ascending or descending order and then compute the median value of the neighborhood pixels. Fig- 4: (a) Image with noise Fig-4: (b) Result of median filter 2.3.2 Averaging Filter Averaging filter is useful for removing grain noise from a photograph. Each pixel gets set to the average of the pixels in its neighborhood. The result of the averaging filter is shown in Fig.5 (b). Fig-5: (a) Image with noise Fig-5: (b) Result of averaging filter 2.3.3 Wiener Filter The wiener filter is used to minimize the mean square error between input and output image. But the wiener filter requires knowing the power spectral density of the original image which is unavailable in practice. The result of the wiener filter is shown in Fig.6 (b). Fig-6: (a) Image with noise Fig-6: (b) Result of wiener filter According to the result images, the median filter is the best suit to reduce the effect the noise. And also, it can reduce the noise without blurring the edge. Therefore, the median filter is chosen for the filtering purpose. 2.4 Image Enhancement The result image of the median filter is enhanced by using the histogram equalization technique. The histogram equalization technique is used to overcome the uneven-illumination case. There are two methods to enhance the image: Histogram equalisation and Adaptive histogram equalisation.
  • 4. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 303 2.4.1 Histogram Equalisation It enhances the contrast of the images by transforming the values in an intensity image. The procedures of the histogram equalisation are- (i) Find the running sum of the pixel values (ii) Normalise the values by dividing the total number of pixels (iii) Multiply by the maximum gray-level value and round the value The result of the histogram equalization is shown in Fig.7 (b) Fig: 7- (a) Original Image Fig-7: (b) Result of histogram Equalisation 2.4.2 Adaptive Histogram Equalisation Unlike histogram, it operates on small data regions (tiles) rather than the entire image. And also contrast enhancement can be limited in order to avoid amplifying the noise which might be presented in the image. So, Adaptive histogram equalisation technique works significantly better than regular histogram equalization for most images. Fig-8: (a) Original Image Fig-8: (b) Result of adaptive histogram equalization According to results, the adaptive histogram equalisation technique is used for image enhancement purpose. 3. OPTIC DISC DETECTION AND ELIMINATION There are many methods to detect the optic disc and the blood vessels for example; K-means clustering algorithm, Fuzzy C means, Mathematical Morphology and so on. The disadvantage of the Fuzzy C means ; for noisy images it does not take into account spatial Information, which makes it sensitive to noise & other image artifacts based on distribution of pixel intensity, so it is sensitive to intensity variations in the illumination. The disadvantage of the K-means clustering algorithm is: K the number of clusters must be determined; it does not yield the same result each time the algorithm is executed. But for the mathematical morphology, it doesn't have these disadvantages and it doesn't need highly efficient computer, so it can work on a poor computer. Therefore, it is suitable for the rural area in developing country. So, the mathematical morphology is chosen for the optic disc and blood vessels detection. 3.1. Mathematical Morphology The basic mathematical morphology operators include the following:  Dilation  Erosion  Closing  Opening Dilation adds pixels to the boundaries of objects in an image. Erosion removes pixels on object boundaries. The morphological open operation is an erosion followed by a dilation, using the same structuring element for both operations. A◦B = (AΘB)⊕B The closing operator is a dilation followed by erosion. A●B = (A ⊕B)ΘB
  • 5. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 304 3.2. Thresholding The Otsu's thresholding technique is applied to the image to detect the desire area. Equations of Otsu algorithm are σ2 Between(T)=wB(T)wo(T)[µB(T)-µo(T)]2 wB(T) = , µB = w0(T) = , µO=  σ2 Between(T)= Between-class variance  w=weight, B=background of the image, o=object of image  µ= combined mean,  T= threshold value The optic disc is the largest and brightest region of the image. The optic disc detection is useful because it can reduce the false positive detection of the exudates. Fig.5 shows the general flow chart of the optic disc detection. Fig-5: Flow Chart of Optic disc Detection (a) (b) (c) (d) (e) Fig-6: (a) Closing (b) Thresholding (c) Filling (d) Reconstruction (e) Detected Optic disc The results of the optic disc detection are shown in Fig.6 (a), (b), (c), (d) and (e). Fig.6 (a) shows the result of the closing operator. To remove the vessels, the closing (morphology) operator is applied. When the closing operator is used, the choice of structuring element is important. The closing is a dilation followed by an erosion that joins the very close objects together.Then, the result image is binarized by thresholding using Otsu algorithm [16]. The result image is shown in Fig.6 (b).The filling operator is applied to fill the holes in the image and the result image is shown in Fig.6 (c). The result image is reconstructed by using the morphology reconstruction and is shown in Fig.6 (d). To detect the optic disc region, the Otsu algorithm is applied on the difference between the original image and the reconstructed image.The optic disc detected area is shown in Fig.6 (e). 4. BLOOD VESSELS DETECTION AND ELIMINATION The blood vessels detection and elimination is also important as the optic disc detection for further process because the optic disc and the blood vessels are the normal features of the images. The general flow chart of the blood vessels detection is shown in Fig.7. To detect the blood vessels, first the input image is converted into grayscale image due to strengthen the appearance of the blood vessels. Then the median filtering and the CLAHE techniques are used for reducing noise and image enhancement purposes. Then, the closing and the filling operators are used to close the same intensity values and fill the holes in the vessels. I(Difference)=ϕ(B1) (I)-fill(I) [1] RGB to HSI Median Filter Contrast-limited adaptive Histogram Equalization histogram equalizationClosing Thresholding Morphological reconstruction Binarization
  • 6. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 305 Where, B1 is the morphological structuring element. Then the Otsu's thresholding technique is applied to the result image to obtain the vessels area. The blood vessels detected area is shown in Fig.8 (e). I(vessels)=Thresholding(I(Difference)) [2] Fig-7: Flow Chart of Blood Vessels Detection (a) (b) (c) (d) (e) Fig-8:(a) Closing (b) Filling (c) Difference (d) Thresholding (e) Detected Blood Vessels The results of the blood vessels detection are shown in Fig.8 (a), (b), (c), (d) and (e).The closing and the filling operators are used to close the same intensity values and fill the holes in the vessels. The result of the closing and the filling of the images are shown in Fig.8 (a) and 8 (b). To get the blood vessels area, Otsu algorithm is applied to the difference image between the closing and the filling images. The result images are shown in Fig.8 (c) and (d). The blood vessels detected area is shown in Fig.8 (e). 5. DISCUSSION In this paper, the mathematical morphology is applied to detect the optic disc and the blood vessels. Detection of optic disc and the blood vessels is the important step for further processes in the detection of diabetic retinopathy. And also it helps the ophthalmologists to detect the optic disc and the vessels more easily and faster. Even on a poor computer system, this technique can work effectively. This method can work faster and it can process within a few minutes. Therefore, this method is suitable for rural area in developing countries. 6. CONCLUSIONS Mathematical morphology method is used for optic disc and the blood vessels detections. For these detections, the input images are taken from the websites and "Eye and ENT General Hospital (Mandalay). The input image is in RGB colour space and for the further processes the image is converted into appropriate colour space. The median filter, averaging filter and the wiener filter are used for the noise reduction. Among these filter, median filter is chosen for the filtering purpose because median filter can reduce the effect of noise without blurring the edge. And then, the adaptive histogram equalisation technique is used for image enhancement. It is also used to overcome the uneven illumination case. Therefore, median filter and the adaptive histogram equalisation techniques are used for noise reduction and image enhancement purposes. Optic disc detection and the blood vessels detection are the major role in the screening of eye diseases. The results of this work can be used in the future RGB to Gray Median Filter Contrast-limited adaptive Histogram Equalization histogram equalizationClosing Filling Thresholding Blood Vessels Detection
  • 7. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 306 processes such as the screening of diabetic retinopathy, glaucoma and so on. This detection method doesn't need the highly efficient computer so it is suitable for rural area in developing countries. ACKNOWLEDGEMENT The author would like to thank to his supervisor Dr.Aung Soe Khaing who gives the good advices for this research. The author also would like to acknowledge the head of Department of Electronic Engineering, Mandalay Technological University. The author is highly grateful to all his teachers, Department of Electronic Engineering, Mandalay Technological University. And also the author would like to thank to all doctors in “EYE and ENT General Hospital” (Mandalay). REFERENCES [1]. W. Hsu, P.M.D.S Pallawala, Mong Li Lee et al., “The Role of Domain Knowledge in the Detection of Retinal Hard Exudates,” In Proceedings of the 2001 IEEE Computer Society Conference on Computer Vision and Pattern Recognition 2, 2001, pp.II-246 - II-251. [2]. C.I. Sanchez, R. Hornero, M.I. Lopez et al., “Retinal Image Analysis to Detect and Quantify Lesions Associated with Diabetic Retinopathy,” In Proceedings of 26th IEEE Annual International Conference on Engineering in Medicine and Biology Society (EMBC) 1, 2004, pp.1624 – 1627. [3]. C.Sinthanayothin, J. F. Boyce, H. L. Cook, and T. H.Williamson, “Automated localisation of the optic disc, fovea, and retinal blood vessels from digital colour fundus images,” Br. J. Ophthalmol., vol. 83, pp.902–910, 1999. [4]. A. Osareh, M. Mirmehdi, B. Thomas, and R. Markham, “Automated identification of diabetic retinal exudates in digital colour images,” Br.J. Ophthalmol., vol. 87, pp. 1220–1223, 2003. [5]. Yang, S.Huang, N.Rao M, “An automatic hybrid Method For Retinal Blood Vessel Extraction”, International Journal of Applied Math. Comput. Sci,2008, Vol18,No.3, pp 399-407,2008 [6]. A. Osareh, M. Mirmehdi, B. Thomas, and R. Markham, “Comparisonof colour spaces for optic disc localisation in retinal images,” in Proc.16th Int. Conf. Pattern Recognit., 2002, pp. 743–746. [7]. J. Lowell, A. Hunter, D. Steel, A. Basu, R. Ryder, E. Fletcher, and L. Kennedy, “Optic nerve head segmentation,” IEEE Trans. Med. Imag., vol. 23, no. 2, pp. 256–264, Feb. 2004. [8]. J. Xu, O. Chutatape, E. Sung, C. Zheng, and P. C. T. Kuan, “Optic disk feature extraction via modified deformable model technique for glaucoma analysis,” Pattern Recognit., vol. 40, no. 7, pp. 2063–2076, 2007. [9]. M. Lalonde, M. Beaulieu, and L. Gagnon, “Fast and robust optic disk detection using pyramidal decomposition and Hausdorff-based template matching,” IEEE Trans. Med. Imag., vol. 20, no. 11, pp. 1193–1200, Nov. 2001. [10]. C.Sinthanayothin, J.F.Boyce, T.Williamson, H.Cook, E.Mensah,andD.Usher, “Automated detection of diabetic retinopathy on digital fundus images”, Diabetic medicine, Vol 19, pp.105- 112, 2002. [11]. A.Frame, P.Undrill, M.Cree, J.Olson, K.McHardy, P.Sharp and J.Forrester, “A comparision of computer based classification methods applied to the detection of microneurysms in ophthalmic fluroscein angiograms”, computer Biol. Med, Vol.28, pp.225-238, 1998 [12]. G.Gardner, D.Keating, T.Williamson, and .Elliot, “Detection of Diabetic retinopathy using neural network analysis of fundus images”, Br. J. Opthalmology., Vol.80, pp 937-948,1996. [13]. B.M.Ege, O.K.Hejlesen, O.VLarsen, K.Moller, B.Jennings, D.Kerrr, D.A.Cavan, “Screening for diabetic retinopathy using computer based image analysis and statistical classification”, computer Methods Programs Biomed, Vol63, pp.165-175, 2000. [14]. D.Fleming, S.Philip, K.A.Goatman, J.A.Olson, P.F.Sharp, “Automated microaneurysm detection using local contrast normalisation and local vessel detection”, IEEE transactions on Medical Imaging, vol.25, pp.1223-1232, 2006. [15]. Rafael C. Gonzalez, Richard E. Woods, Steven L. Eddins, Digital Image Processing Using MATLAB, 2nd Edition, Prentice-Hall, 2002. [16]. A. Sopharak, B. Uyyanonvara, S. Barman et al., “Automatic detection of diabetic retinopathy exudates from non-dilated retinal images using mathematical morphology methods,” Computer Medical Imaging and Graphics 32(8), 2008, pp. 720-727. BIOGRAPHIES Oakar Phyo received his Bachelor degree in Electronics from Technological University (Mandalay), Myanmar in 2012. He is a master candidate of Electronics Engineering Department at Mandalay Technological University. His interest research include image processing and biomedical. He received Bachelor of Engineering in Electronics from Mandalay Technological University, Mandalay, Myanmar, in 2004 and Master of Engineering in Electronics from Yangon Technological University, Yangon, Myanmar, in 2006. He has continued his PhD dissertation in 2006. From October 2008 to September 2010, he was doing research on Spatial Frequency Analysis of the Human Brain at the Institute of Biomedical Engineering and Informatics, Technical University Ilmenau, Germany. He
  • 8. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 03 Issue: 03 | Mar-2014, Available @ http://www.ijret.org 307 received his PhD in Electronic Engineering from Mandalay Technological University, Mandalay, Myanmar, in 2011. He is now Associate Professor at Department of Electronic Engineering, Mandalay Technological University, and Mandalay, Myanmar. His research interests include computer based Electrocardiogram (ECG) system, biomedical signal and image processing, bioinstrumentation and telemedicine. Dr. Aung Soe Khaing was responsible for the ECG laboratory for the biomedical engineering students at the Institute of Biomedical Engineering and Informatics, Technical University Ilmenau, Germany from October 2008 to September 2010.