SlideShare a Scribd company logo
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

PPTX
Detection of eye disorders through retinal image analysis
PDF
Vessels delineation in retinal 
images using COSFIRE filters
PPSX
Automatic Detection of Diabetic Maculopathy from Funduas Images Using Image A...
PDF
Automatic identification and classification of microaneurysms for detection o...
PDF
Performance analysis of retinal image blood vessel segmentation
PDF
Review of methods for diabetic retinopathy detection and severity classification
PPTX
Thesis presentation
PDF
Segmentation of the Blood Vessel and Optic Disc in Retinal Images Using EM Al...
Detection of eye disorders through retinal image analysis
Vessels delineation in retinal 
images using COSFIRE filters
Automatic Detection of Diabetic Maculopathy from Funduas Images Using Image A...
Automatic identification and classification of microaneurysms for detection o...
Performance analysis of retinal image blood vessel segmentation
Review of methods for diabetic retinopathy detection and severity classification
Thesis presentation
Segmentation of the Blood Vessel and Optic Disc in Retinal Images Using EM Al...

What's hot (20)

PPTX
Enhancement Of Retinal Fundus Image Using 2-D GABOR WAVELET Transform
PPTX
Automatic Blood Vessels Segmentation of Retinal Images
PPTX
PROJECT FINAL PPT
PPTX
Diabetic Retinopathy Analysis using Fundus Image
PDF
Automatic Detection of Non-Proliferative Diabetic Retinopathy Using Fundus Im...
PPTX
Undergraduate Project Email
PDF
Automated Screening of Diabetic Retinopathy Using Image Processing
PDF
Diabetic Retinopathy Detection using Neural Networking
PDF
EXUDATES DETECTION FROM DIGITAL FUNDUS IMAGE OF DIABETIC RETINOPATHY
PDF
An Approach for the Detection of Vascular Abnormalities in Diabetic Retinopathy
PDF
C LASSIFICATION O F D IABETES R ETINA I MAGES U SING B LOOD V ESSEL A REAS
PDF
PREVALENCE EVALUATION OF DIABETIC RETINOPATHY
PDF
Diagnosis of Diabetic Retinopathy
PDF
AUTOMATED DETECTION OF HARD EXUDATES IN FUNDUS IMAGES USING IMPROVED OTSU THR...
PDF
Review on Optic Disc Localization Techniques
PDF
A novel-approach-for-retinal-lesion-detection-indiabetic-retinopathy-images
PDF
International Journal of Computational Engineering Research(IJCER)
PDF
A045010107
PDF
H0366051058
Enhancement Of Retinal Fundus Image Using 2-D GABOR WAVELET Transform
Automatic Blood Vessels Segmentation of Retinal Images
PROJECT FINAL PPT
Diabetic Retinopathy Analysis using Fundus Image
Automatic Detection of Non-Proliferative Diabetic Retinopathy Using Fundus Im...
Undergraduate Project Email
Automated Screening of Diabetic Retinopathy Using Image Processing
Diabetic Retinopathy Detection using Neural Networking
EXUDATES DETECTION FROM DIGITAL FUNDUS IMAGE OF 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
PREVALENCE EVALUATION OF DIABETIC RETINOPATHY
Diagnosis of Diabetic Retinopathy
AUTOMATED DETECTION OF HARD EXUDATES IN FUNDUS IMAGES USING IMPROVED OTSU THR...
Review on Optic Disc Localization Techniques
A novel-approach-for-retinal-lesion-detection-indiabetic-retinopathy-images
International Journal of Computational Engineering Research(IJCER)
A045010107
H0366051058
Ad

Viewers also liked (20)

PPTX
Deep learning from a novice perspective
PDF
Bio medical ieee 2012 projects @ hades infotech
PDF
S0733862709001199
PPT
PPTX
Pain management in neonates
DOC
Drill 9
PDF
Pediatric pain assessment
PDF
40-49 Health Dossier V5
PPT
Developmentally supportive neonatal care
PPTX
Assessment of pain
PPTX
Fall Research Collaborative meeting
PDF
Computer and Information Technology
PDF
Intelligent home heating system
PPTX
Compare and contrast
PDF
English focus
PPTX
Alien trailer
PPT
TÁC HẠI CỦA THUỐC LÁ
PDF
An approach for ids by combining svm and ant colony algorithm
PDF
Finite element analysis of aluminium alloys for their vibration characteristics
PDF
Optimization of a multistorey building by optimum
Deep learning from a novice perspective
Bio medical ieee 2012 projects @ hades infotech
S0733862709001199
Pain management in neonates
Drill 9
Pediatric pain assessment
40-49 Health Dossier V5
Developmentally supportive neonatal care
Assessment of pain
Fall Research Collaborative meeting
Computer and Information Technology
Intelligent home heating system
Compare and contrast
English focus
Alien trailer
TÁC HẠI CỦA THUỐC LÁ
An approach for ids by combining svm and ant colony algorithm
Finite element analysis of aluminium alloys for their vibration characteristics
Optimization of a multistorey building by optimum
Ad

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

PDF
IRJET- Survey based on Detection of Optic Disc in Retinal Images using Segmen...
PDF
Retinal blood vessel extraction and optical disc removal
PDF
Blood vessel segmentation in fundus images
PDF
study-and-development-of-digital-image-processing-tool-for-application-of-dia...
PDF
Optic Disk and Retinal Vesssel Segmentation in Fundus Images
PDF
Binary operation based hard exudate detection and fuzzy based classification ...
PDF
IRJET- Retinal Fundus Image Segmentation using Watershed Algorithm
PDF
Automated feature extraction for early detection of diabetic retinopathy i
PDF
AN AUTOMATIC SCREENING METHOD TO DETECT OPTIC DISC IN THE RETINA
PPTX
Glaucoma progressiondetection based on Retinal Features.pptx
PDF
IJSRED-V2I2P4
PDF
Retinal image analysis using morphological process and clustering technique
PDF
Diabetic Retinopathy Image Enhancement using Vessel Extraction in Retinal Fun...
PDF
[IJET-V2I2P10] Authors:M. Dhivya, P. Jenifer, D. C. Joy Winnie Wise, N. Rajap...
PDF
Q01765102112
PDF
A UTOMATIC C OMPUTATION OF CDR U SING F UZZY C LUSTERING T ECHNIQUES
PDF
A UTOMATIC C OMPUTATION OF CDR U SING F UZZY C LUSTERING T ECHNIQUES
PDF
Automated Detection of Optic Disc in Retinal FundusImages Using PCA
PDF
IRJET- Comparison of Preprocessing Methods for Diabetic Retinopathy Detec...
PDF
H43054851
IRJET- Survey based on Detection of Optic Disc in Retinal Images using Segmen...
Retinal blood vessel extraction and optical disc removal
Blood vessel segmentation in fundus images
study-and-development-of-digital-image-processing-tool-for-application-of-dia...
Optic Disk and Retinal Vesssel Segmentation in Fundus Images
Binary operation based hard exudate detection and fuzzy based classification ...
IRJET- Retinal Fundus Image Segmentation using Watershed Algorithm
Automated feature extraction for early detection of diabetic retinopathy i
AN AUTOMATIC SCREENING METHOD TO DETECT OPTIC DISC IN THE RETINA
Glaucoma progressiondetection based on Retinal Features.pptx
IJSRED-V2I2P4
Retinal image analysis using morphological process and clustering technique
Diabetic Retinopathy Image Enhancement using Vessel Extraction in Retinal Fun...
[IJET-V2I2P10] Authors:M. Dhivya, P. Jenifer, D. C. Joy Winnie Wise, N. Rajap...
Q01765102112
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 ECHNIQUES
Automated Detection of Optic Disc in Retinal FundusImages Using PCA
IRJET- Comparison of Preprocessing Methods for Diabetic Retinopathy Detec...
H43054851

More from eSAT Publishing House (20)

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

Recently uploaded (20)

PPTX
CH1 Production IntroductoryConcepts.pptx
PPTX
bas. eng. economics group 4 presentation 1.pptx
PPTX
Lecture Notes Electrical Wiring System Components
PPTX
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
PDF
PPT on Performance Review to get promotions
PDF
Enhancing Cyber Defense Against Zero-Day Attacks using Ensemble Neural Networks
PPTX
Welding lecture in detail for understanding
PDF
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
PPTX
additive manufacturing of ss316l using mig welding
PPTX
Recipes for Real Time Voice AI WebRTC, SLMs and Open Source Software.pptx
PPTX
IOT PPTs Week 10 Lecture Material.pptx of NPTEL Smart Cities contd
DOCX
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
PDF
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
PDF
R24 SURVEYING LAB MANUAL for civil enggi
PDF
Model Code of Practice - Construction Work - 21102022 .pdf
PDF
composite construction of structures.pdf
PPTX
UNIT-1 - COAL BASED THERMAL POWER PLANTS
PPTX
web development for engineering and engineering
PDF
Well-logging-methods_new................
PPTX
CYBER-CRIMES AND SECURITY A guide to understanding
CH1 Production IntroductoryConcepts.pptx
bas. eng. economics group 4 presentation 1.pptx
Lecture Notes Electrical Wiring System Components
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
PPT on Performance Review to get promotions
Enhancing Cyber Defense Against Zero-Day Attacks using Ensemble Neural Networks
Welding lecture in detail for understanding
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
additive manufacturing of ss316l using mig welding
Recipes for Real Time Voice AI WebRTC, SLMs and Open Source Software.pptx
IOT PPTs Week 10 Lecture Material.pptx of NPTEL Smart Cities contd
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
R24 SURVEYING LAB MANUAL for civil enggi
Model Code of Practice - Construction Work - 21102022 .pdf
composite construction of structures.pdf
UNIT-1 - COAL BASED THERMAL POWER PLANTS
web development for engineering and engineering
Well-logging-methods_new................
CYBER-CRIMES AND SECURITY A guide to understanding

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.