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 479
DETECTION OF CROSSOVER & BIFURCATION POINTS ON A
RETINAL FUNDUS IMAGE BY ANALYZING NEIGHBORHOOD
CONNECTIVITY OF NON-VASCULAR REGIONS AROUND A
JUNCTION POINT
Harsh Fatepuria1
, Govind Singhania2
, Nishit Shah3
, Rahul Singh4
, Nilanjana Dutta Roy5
1
Student, Computer Science & Engineering Department, IEM, WB, India
2
Student, Computer Science & Engineering Department, IEM, WB, India
3
Student, Computer Science & Engineering Department, IEM, WB, India
4
Student, Computer Science & Engineering Department, IEM, WB, India
5
Assistant Professor, Computer Science & Engineering Department, IEM, WB, India
Abstract
Over the last few decades, analysis of retinal vascular images has gained its popularity among the cyber scientists. Retina is unique in
nature because of its most important feature, bifurcation & crossover points, serving reliable authentication basis. Using these two
points many problem of authentication could be handled easily. Literature has shown that in a retinal vascular structure, bifurcation&
crossover points need to be separated for the purpose of authentication. With this motivation in mind, we propose a novel method to
segregate vascular bifurcation points from crossover points in any retinal image by analyzing neighborhood connectivity of non-
vascular regions around a junction point on retinal blood vessels.
Keywords: Retinal vessel analysis, retinal blood vessels, bifurcation and crossover point’s detection.
----------------------------------------------------------------------***-----------------------------------------------------------------------
1. INTRODUCTION
With the immense growth of digital automation, the demand
for the automated computer-aided analysis of medical images
has been emerging as a potential research domain. The
multifarious growth of Internet technology in modern cyber
age has been producing alarming threat to the traditional
security system. To ensure better security, cyber scientists are
searching for biometric features as the basis of authentication.
The motive behind using the biological features is its
uniqueness in nature. Retina is one of the most secure,
reliable, trustworthy sources of biometric authentication.
Retina is unique because of its anatomical structure of retinal
nerves. One of the unique features of retina is the bifurcation
point [7]. It is basically a junction on a vessel from where two
other child nerves are generated [Fig. 2]. The proposed
algorithm focuses on determining the potential bifurcation and
crossover points from the segmented binary fundus images of
retina collected from DRIVE database [5]. The analysis of
geometrical properties of branching structure is not new but
retinal blood vessel tree geometry and topology has not been
widely studied by means of image processing. Perez et al. [3]
proposed a geometric feature based technique for detecting
vascular bifurcation and crossover points (landmarks) based
on skeletonized vascular network. They characterize the
bifurcation and crossover points by the total number of
intersections using a fixed-size circular window centered on
the candidate landmark points. This process extracts the
morphological features to identify the landmarks of retinal
vascular tree. However, it fails when two true bifurcation
points are very close window. This process is also prone to
false identifying landmarks if another vessel passes through
the fixed-size window. Jung et al. [2] proposed cross
perpendicular structure and Y-type structure with eight
connected neighbors for vascular landmarks extraction.
Bevilacqua et al. [1] and Chanwimaluang et al. [4] also
proposed similar techniques to detect landmarks based on
some specific formation of vessel centre-line pixels analyzing
their eight- connectivity nature. But all these methods tend to
detect landmarks wrongly due to the error induced by
skeletonization because of abrupt change of the width of any
vessel within the mask window. In this paper, a novel but
simple approach is proposed to detect the vessel bifurcation
and crossover points analyzing the intersection/junction
regions on the blood vessels. Next section introduces the
proposed method of vessel bifurcation along with brief
background knowledge of retinal image analysis. The rest of
the paper is organized as follows. The detailed illustration of
the proposed algorithm is provided in section 2. Section 3
provides the experimental results, after which the conclusion
is drawn followed by references.
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 480
2. PROPOSED SCHEME
One of the unique features of any human retina is its
Bifurcation & Crossover points. Bifurcation is basically a
junction (Fig. 2) on a vessel from where two other child
nerves are generated. On the other hand, when two vessels or
branches of two vessels meet at a point then it is termed as
Crossover (Fig. 1). Statistical analysis has shown that in a
retinal vascular structure, bifurcation & crossover points are
the most important features used for many purposes. Therefore
the proposed algorithm has been attempted for pointing out the
prominent bifurcation & crossover points on the retinal blood
vessels. The overall scheme is outlined below.
The scheme takes vessel segmented binary image as input
(Fig. 4). The vessels can be extracted from the fundus image
(Fig 3) by various image filtering techniques as discussed in
[2, 4].
Fig -1: A window detected as crossover because of four black
regions.
Fig -2: A window detected as bifurcation because of three
black regions.
Start traversing the border pixels of the image from the top left
corner in anticlockwise way. Mark the first black pixel as
region 1. Continue to traverse the image until there is a
transformation from white pixel to black pixel. Apply Breadth
First Search algorithm to check whether the new black pixel
meets any other previously found black region. If it does not
meet, increment the region number, otherwise not. Similarly,
traverse all the border pixels and keep counting the number of
total black regions. If number of black regions is equal to
three, it is a bifurcation (Fig 2); and if the number of black
regions exceeds 3, then it is crossover (Fig 1).
Fig -3 Image from DRIVE database
Fig -4 Vessel segmented image from DRIVE database
3. PROPOSED ALGORITHM
Input: Vessel Segmented Binary Fundus Image (fig 4)
Output: Image showing bifurcation & crossover points
Step 1 Consider a window with maximum number of white
pixels as the root.
Step 2 A square window is traversed throughout the image
row wise to count the number of black regions in the window.
Step 2.1 To count the black regions, initialize a variable
(count) as 1.
Step 2.2 If the first (top left) pixel is black, insert its location
in an array with region number 1 and increment count
variable.
Step 2.3 Traverse the border pixels of the box in anticlockwise
direction.
Step 2.4 On detecting a change in color from white to black
(let the black pixel be called BP), follow Step 2.4.1 otherwise
continue traversing the border pixels.
Step 2.4.1 If the count variable equals 2, insert the black
pixel’s (i.e., BP’s) locations in the previous mentioned array
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 481
with region number 2 and increment count; otherwise using
BFS (Breadth First Search) technique add all the neighboring
(i.e., top, bottom, left and right) black pixels of BP in a queue
to see whether it meets any black pixel already present in the
previous array.
Step 2.4.2 If it does not meet any black pixel present in the
array, insert BP’s locations in the array with the count value as
region number; and increment the count variable; otherwise
continue traversing the border pixels.
Step 2.5 Return the number of black regions in the box as
(count-1).
Step 3 If the number of black regions is less than or equal to 2,
ignore the box.
Step 4 If the number of black regions is equal to 3, color the
region red, indicating bifurcation.
Step 5 If the number of black regions is greater than 3, color
the region blue, indicating crossover.
4. EXPERIMENTAL RESULTS
- Crossover Points
- Bifurcation Points
4.1 Results on cropped images taken from Drive
Database Showing Crossover & Bifurcation Points
Fig -5
Fig -6
Fig -7
4.2 Results on Fundus Images taken from Drive
Database
Table-1: Results
1
INPUT
IMAGE
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 482
OUTPUT
IMAGE
2
INPUT
IMAGE
OUTPUT
IMAGE
3
INPUT
IMAGE
OUTPUT
IMAGE
4
INPUT
IMAGE
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 483
OUTPUT
IMAGE
5
INPUT
IMAGE
OUTPUT
IMAGE
6
INPUT
IMAGE
OUTPUT
IMAGE
4.3 Calculation of Crossover Points with Success Rate
Images
Total
number of
crossover
points
estimated
Number of
crossover points
detected by the
proposed
algorithm
Success
Rate (%)
Image1 21 16 76
Image2 21 18 86
Image3 25 21 84
Image 4 27 23 85
Image 5 24 22 92
Image 6 20 14 70
Average Success Rate 82
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 484
5. CONCLUSIONS
In this paper, a novel method is proposed to separate vascular
bifurcation points from its crossover points in any retinal
images by analyzing neighborhood connectivity of non-
vascular regions around a junction point on retinal blood
vessels. Statistical analysis has shown that the result of this
scheme is effective in separating the prominent bifurcation
points from crossover points with reasonable accuracy and
time. By using this concept, in near future, preparing the
authentication-based schemes would be much easier.
The results are generated in C language using gcc compiler
and it is tested on Intel i3 processor with 4 GB RAM
REFERENCES
[1]. V. Bevilacqua, S. Cambo, L. Cariello, and G.
Mastronardi, ìa combined method to detect retinal
fundusfeatures,î Proceedings of European Conference on
Emergent Aspects in Clinical Data Analysis, pp. 1ñ6, 2005.
[2]. Eunhwa Jung and Kyungho Hong, ìAutomatic retinal
vasculature structure tracing and vascular landmark extraction
from human eye image,î Proceedings of IEEE International
Conference on Hybrid Information Technology, vol. 12, pp.
161ñ167, 2006.
[3]. M. E. Martinez-Perez, A. D. Highes, A. V. Stanton,
S.A.Thorn, N. Chapman, and A. A. Bharath K. H.
Parker,ìRetinal vascular tree International Journal of Latest
Research in Science and Technology.
ISSN: 2278-5299 108 morphology: a semi-automatic
quantification,î IEEE Transactions on Biomedical
Engineering, vol. 49(8), 2002.
[4]. T Chanwimaluang and Guoliang Fan, ìAn efficient blood
vessel detection algorithm for retinal images using local
entropy thresholding ,î Proceedings of the 2003 International
Symposium on Circuits and Systems, vol. 5, 2003.
[5]. The DRIVE database, ìImage sciences institute, university
medical center utrecht,î The Netherlands.
http://www.isi.uu.nl/Research/Databases/DRIVE/, last
accessed on 7th July 2007
[6]. W. K. Pratt, Digital Image Processing, Prentice Hall,
second edition, 1991. Milan Sonka, Vaclav Hlavac, and Roger
Boyle, Image Processing, Analysis and Machine Vision, PWS
Publishing, second edition, 1999.
[7]. Automatic detection of bifurcation points in retinal
fundus-images 1Sourav Saha, 2Nilanjana Dutta Roy,
International Journal of Latest Research in Science and
Technology ISSN (Online): 2278-5299 Volume 2,Issue 2:
Page No.105-108, March - April (2013)
http://www.mnkjournals.com/ijlrst.htm
[8]. Model-Based Method for Improving the Accuracy And
Repeatability of Estimating Vascular Bifurcations And
Crossovers From Retinal Fundus Images Chia-Ling Tsai,
Member, IEEE, Charles V. Stewart, Member, IEEE, Howard
L. Tanenbaum, and Badrinath Roysam, Member, IEEE

More Related Content

What's hot

3D M ESH S EGMENTATION U SING L OCAL G EOMETRY
3D M ESH S EGMENTATION U SING  L OCAL G EOMETRY3D M ESH S EGMENTATION U SING  L OCAL G EOMETRY
3D M ESH S EGMENTATION U SING L OCAL G EOMETRY
ijcga
 
A Study of Method in Facial Emotional Recognitation
A Study of Method in Facial Emotional RecognitationA Study of Method in Facial Emotional Recognitation
A Study of Method in Facial Emotional Recognitation
rahulmonikasharma
 
A PREDICTION METHOD OF GESTURE TRAJECTORY BASED ON LEAST SQUARES FITTING MODEL
A PREDICTION METHOD OF GESTURE TRAJECTORY BASED ON LEAST SQUARES FITTING MODELA PREDICTION METHOD OF GESTURE TRAJECTORY BASED ON LEAST SQUARES FITTING MODEL
A PREDICTION METHOD OF GESTURE TRAJECTORY BASED ON LEAST SQUARES FITTING MODEL
VLSICS Design
 
50120130406021
5012013040602150120130406021
50120130406021
IAEME Publication
 
Sparse representation based classification of mr images of brain for alzheime...
Sparse representation based classification of mr images of brain for alzheime...Sparse representation based classification of mr images of brain for alzheime...
Sparse representation based classification of mr images of brain for alzheime...
eSAT Publishing House
 
MAGNETIC RESONANCE BRAIN IMAGE SEGMENTATION
MAGNETIC RESONANCE BRAIN IMAGE SEGMENTATIONMAGNETIC RESONANCE BRAIN IMAGE SEGMENTATION
MAGNETIC RESONANCE BRAIN IMAGE SEGMENTATION
VLSICS Design
 
Leaf identification based on fuzzy c means and naïve bayesian classification
Leaf identification based on fuzzy c means and naïve bayesian classificationLeaf identification based on fuzzy c means and naïve bayesian classification
Leaf identification based on fuzzy c means and naïve bayesian classification
IAEME Publication
 
A Hybrid Technique for Shape Matching Based on chain code and DFS Tree
A Hybrid Technique for Shape Matching Based on chain code and DFS TreeA Hybrid Technique for Shape Matching Based on chain code and DFS Tree
A Hybrid Technique for Shape Matching Based on chain code and DFS Tree
IOSR Journals
 
Predicting growth of urban agglomerations through fractal analysis of geo spa...
Predicting growth of urban agglomerations through fractal analysis of geo spa...Predicting growth of urban agglomerations through fractal analysis of geo spa...
Predicting growth of urban agglomerations through fractal analysis of geo spa...
Indicus Analytics Private Limited
 
Revisiting Projection Methods over Automatic Oct-tree Meshes
Revisiting Projection Methods over Automatic Oct-tree MeshesRevisiting Projection Methods over Automatic Oct-tree Meshes
Revisiting Projection Methods over Automatic Oct-tree Meshes
Abhishek Jain
 
Fault diagnosis using genetic algorithms and principal curves
Fault diagnosis using genetic algorithms and principal curvesFault diagnosis using genetic algorithms and principal curves
Fault diagnosis using genetic algorithms and principal curves
eSAT Journals
 
Comparative study of two methods for Handwritten Devanagari Numeral Recognition
Comparative study of two methods for Handwritten Devanagari Numeral RecognitionComparative study of two methods for Handwritten Devanagari Numeral Recognition
Comparative study of two methods for Handwritten Devanagari Numeral Recognition
IOSR Journals
 
A Survey Paper on Character Recognition
A Survey Paper on Character RecognitionA Survey Paper on Character Recognition
A Survey Paper on Character Recognition
ijsrd.com
 
Enhancing the Design pattern Framework of Robots Object Selection Mechanism -...
Enhancing the Design pattern Framework of Robots Object Selection Mechanism -...Enhancing the Design pattern Framework of Robots Object Selection Mechanism -...
Enhancing the Design pattern Framework of Robots Object Selection Mechanism -...
INFOGAIN PUBLICATION
 
Ijetcas14 399
Ijetcas14 399Ijetcas14 399
Ijetcas14 399
Iasir Journals
 
Segmentation of unhealthy region of plant leaf using image processing techniq...
Segmentation of unhealthy region of plant leaf using image processing techniq...Segmentation of unhealthy region of plant leaf using image processing techniq...
Segmentation of unhealthy region of plant leaf using image processing techniq...
eSAT Publishing House
 

What's hot (16)

3D M ESH S EGMENTATION U SING L OCAL G EOMETRY
3D M ESH S EGMENTATION U SING  L OCAL G EOMETRY3D M ESH S EGMENTATION U SING  L OCAL G EOMETRY
3D M ESH S EGMENTATION U SING L OCAL G EOMETRY
 
A Study of Method in Facial Emotional Recognitation
A Study of Method in Facial Emotional RecognitationA Study of Method in Facial Emotional Recognitation
A Study of Method in Facial Emotional Recognitation
 
A PREDICTION METHOD OF GESTURE TRAJECTORY BASED ON LEAST SQUARES FITTING MODEL
A PREDICTION METHOD OF GESTURE TRAJECTORY BASED ON LEAST SQUARES FITTING MODELA PREDICTION METHOD OF GESTURE TRAJECTORY BASED ON LEAST SQUARES FITTING MODEL
A PREDICTION METHOD OF GESTURE TRAJECTORY BASED ON LEAST SQUARES FITTING MODEL
 
50120130406021
5012013040602150120130406021
50120130406021
 
Sparse representation based classification of mr images of brain for alzheime...
Sparse representation based classification of mr images of brain for alzheime...Sparse representation based classification of mr images of brain for alzheime...
Sparse representation based classification of mr images of brain for alzheime...
 
MAGNETIC RESONANCE BRAIN IMAGE SEGMENTATION
MAGNETIC RESONANCE BRAIN IMAGE SEGMENTATIONMAGNETIC RESONANCE BRAIN IMAGE SEGMENTATION
MAGNETIC RESONANCE BRAIN IMAGE SEGMENTATION
 
Leaf identification based on fuzzy c means and naïve bayesian classification
Leaf identification based on fuzzy c means and naïve bayesian classificationLeaf identification based on fuzzy c means and naïve bayesian classification
Leaf identification based on fuzzy c means and naïve bayesian classification
 
A Hybrid Technique for Shape Matching Based on chain code and DFS Tree
A Hybrid Technique for Shape Matching Based on chain code and DFS TreeA Hybrid Technique for Shape Matching Based on chain code and DFS Tree
A Hybrid Technique for Shape Matching Based on chain code and DFS Tree
 
Predicting growth of urban agglomerations through fractal analysis of geo spa...
Predicting growth of urban agglomerations through fractal analysis of geo spa...Predicting growth of urban agglomerations through fractal analysis of geo spa...
Predicting growth of urban agglomerations through fractal analysis of geo spa...
 
Revisiting Projection Methods over Automatic Oct-tree Meshes
Revisiting Projection Methods over Automatic Oct-tree MeshesRevisiting Projection Methods over Automatic Oct-tree Meshes
Revisiting Projection Methods over Automatic Oct-tree Meshes
 
Fault diagnosis using genetic algorithms and principal curves
Fault diagnosis using genetic algorithms and principal curvesFault diagnosis using genetic algorithms and principal curves
Fault diagnosis using genetic algorithms and principal curves
 
Comparative study of two methods for Handwritten Devanagari Numeral Recognition
Comparative study of two methods for Handwritten Devanagari Numeral RecognitionComparative study of two methods for Handwritten Devanagari Numeral Recognition
Comparative study of two methods for Handwritten Devanagari Numeral Recognition
 
A Survey Paper on Character Recognition
A Survey Paper on Character RecognitionA Survey Paper on Character Recognition
A Survey Paper on Character Recognition
 
Enhancing the Design pattern Framework of Robots Object Selection Mechanism -...
Enhancing the Design pattern Framework of Robots Object Selection Mechanism -...Enhancing the Design pattern Framework of Robots Object Selection Mechanism -...
Enhancing the Design pattern Framework of Robots Object Selection Mechanism -...
 
Ijetcas14 399
Ijetcas14 399Ijetcas14 399
Ijetcas14 399
 
Segmentation of unhealthy region of plant leaf using image processing techniq...
Segmentation of unhealthy region of plant leaf using image processing techniq...Segmentation of unhealthy region of plant leaf using image processing techniq...
Segmentation of unhealthy region of plant leaf using image processing techniq...
 

Viewers also liked

Design and implementation of three dimensional objects in database management...
Design and implementation of three dimensional objects in database management...Design and implementation of three dimensional objects in database management...
Design and implementation of three dimensional objects in database management...
eSAT Journals
 
Computational testing of wear rate of different material with variable operat...
Computational testing of wear rate of different material with variable operat...Computational testing of wear rate of different material with variable operat...
Computational testing of wear rate of different material with variable operat...
eSAT Journals
 
Strength characteristics of concrete containing post consumer metalized plast...
Strength characteristics of concrete containing post consumer metalized plast...Strength characteristics of concrete containing post consumer metalized plast...
Strength characteristics of concrete containing post consumer metalized plast...
eSAT Journals
 
Implementation of radio frequency identification technology in accessing info...
Implementation of radio frequency identification technology in accessing info...Implementation of radio frequency identification technology in accessing info...
Implementation of radio frequency identification technology in accessing info...
eSAT Journals
 
Finite element analysis of a floating rectangular plate
Finite element analysis of a floating rectangular plateFinite element analysis of a floating rectangular plate
Finite element analysis of a floating rectangular plate
eSAT Journals
 
Effect of calcination on the electrical properties and quantum confinement of...
Effect of calcination on the electrical properties and quantum confinement of...Effect of calcination on the electrical properties and quantum confinement of...
Effect of calcination on the electrical properties and quantum confinement of...
eSAT Journals
 
Experimental analysis and optimization of material consumption
Experimental analysis and optimization of material consumptionExperimental analysis and optimization of material consumption
Experimental analysis and optimization of material consumption
eSAT Journals
 
Decision making approach to prefer route repair technique in aodv routing pro...
Decision making approach to prefer route repair technique in aodv routing pro...Decision making approach to prefer route repair technique in aodv routing pro...
Decision making approach to prefer route repair technique in aodv routing pro...
eSAT Journals
 
Design of power and delay efficient 32 bit x 32 bit multi precision multiplie...
Design of power and delay efficient 32 bit x 32 bit multi precision multiplie...Design of power and delay efficient 32 bit x 32 bit multi precision multiplie...
Design of power and delay efficient 32 bit x 32 bit multi precision multiplie...
eSAT Journals
 
Crowd control system using ir transmitter and receiver
Crowd control system using ir transmitter and receiverCrowd control system using ir transmitter and receiver
Crowd control system using ir transmitter and receiver
eSAT Journals
 
Analysis on parameters affecting sleep apnea & control measures using low...
Analysis on parameters affecting sleep apnea & control measures using low...Analysis on parameters affecting sleep apnea & control measures using low...
Analysis on parameters affecting sleep apnea & control measures using low...
eSAT Journals
 
Using data mining methods knowledge discovery for text mining
Using data mining methods knowledge discovery for text miningUsing data mining methods knowledge discovery for text mining
Using data mining methods knowledge discovery for text mining
eSAT Journals
 
Study of mechanical properties of concrete at elevated temperatures a review
Study of mechanical properties of concrete at elevated temperatures   a reviewStudy of mechanical properties of concrete at elevated temperatures   a review
Study of mechanical properties of concrete at elevated temperatures a review
eSAT Journals
 
Low power low voltage operation of operational amplifier
Low power low voltage operation of operational amplifierLow power low voltage operation of operational amplifier
Low power low voltage operation of operational amplifier
eSAT Journals
 
Neural network based image compression with lifting scheme and rlc
Neural network based image compression with lifting scheme and rlcNeural network based image compression with lifting scheme and rlc
Neural network based image compression with lifting scheme and rlc
eSAT Journals
 
Studies on jet penetration and kerf width at various operating pressure in ma...
Studies on jet penetration and kerf width at various operating pressure in ma...Studies on jet penetration and kerf width at various operating pressure in ma...
Studies on jet penetration and kerf width at various operating pressure in ma...
eSAT Journals
 
Design and implementation of optical character recognition using template mat...
Design and implementation of optical character recognition using template mat...Design and implementation of optical character recognition using template mat...
Design and implementation of optical character recognition using template mat...
eSAT Journals
 

Viewers also liked (17)

Design and implementation of three dimensional objects in database management...
Design and implementation of three dimensional objects in database management...Design and implementation of three dimensional objects in database management...
Design and implementation of three dimensional objects in database management...
 
Computational testing of wear rate of different material with variable operat...
Computational testing of wear rate of different material with variable operat...Computational testing of wear rate of different material with variable operat...
Computational testing of wear rate of different material with variable operat...
 
Strength characteristics of concrete containing post consumer metalized plast...
Strength characteristics of concrete containing post consumer metalized plast...Strength characteristics of concrete containing post consumer metalized plast...
Strength characteristics of concrete containing post consumer metalized plast...
 
Implementation of radio frequency identification technology in accessing info...
Implementation of radio frequency identification technology in accessing info...Implementation of radio frequency identification technology in accessing info...
Implementation of radio frequency identification technology in accessing info...
 
Finite element analysis of a floating rectangular plate
Finite element analysis of a floating rectangular plateFinite element analysis of a floating rectangular plate
Finite element analysis of a floating rectangular plate
 
Effect of calcination on the electrical properties and quantum confinement of...
Effect of calcination on the electrical properties and quantum confinement of...Effect of calcination on the electrical properties and quantum confinement of...
Effect of calcination on the electrical properties and quantum confinement of...
 
Experimental analysis and optimization of material consumption
Experimental analysis and optimization of material consumptionExperimental analysis and optimization of material consumption
Experimental analysis and optimization of material consumption
 
Decision making approach to prefer route repair technique in aodv routing pro...
Decision making approach to prefer route repair technique in aodv routing pro...Decision making approach to prefer route repair technique in aodv routing pro...
Decision making approach to prefer route repair technique in aodv routing pro...
 
Design of power and delay efficient 32 bit x 32 bit multi precision multiplie...
Design of power and delay efficient 32 bit x 32 bit multi precision multiplie...Design of power and delay efficient 32 bit x 32 bit multi precision multiplie...
Design of power and delay efficient 32 bit x 32 bit multi precision multiplie...
 
Crowd control system using ir transmitter and receiver
Crowd control system using ir transmitter and receiverCrowd control system using ir transmitter and receiver
Crowd control system using ir transmitter and receiver
 
Analysis on parameters affecting sleep apnea & control measures using low...
Analysis on parameters affecting sleep apnea & control measures using low...Analysis on parameters affecting sleep apnea & control measures using low...
Analysis on parameters affecting sleep apnea & control measures using low...
 
Using data mining methods knowledge discovery for text mining
Using data mining methods knowledge discovery for text miningUsing data mining methods knowledge discovery for text mining
Using data mining methods knowledge discovery for text mining
 
Study of mechanical properties of concrete at elevated temperatures a review
Study of mechanical properties of concrete at elevated temperatures   a reviewStudy of mechanical properties of concrete at elevated temperatures   a review
Study of mechanical properties of concrete at elevated temperatures a review
 
Low power low voltage operation of operational amplifier
Low power low voltage operation of operational amplifierLow power low voltage operation of operational amplifier
Low power low voltage operation of operational amplifier
 
Neural network based image compression with lifting scheme and rlc
Neural network based image compression with lifting scheme and rlcNeural network based image compression with lifting scheme and rlc
Neural network based image compression with lifting scheme and rlc
 
Studies on jet penetration and kerf width at various operating pressure in ma...
Studies on jet penetration and kerf width at various operating pressure in ma...Studies on jet penetration and kerf width at various operating pressure in ma...
Studies on jet penetration and kerf width at various operating pressure in ma...
 
Design and implementation of optical character recognition using template mat...
Design and implementation of optical character recognition using template mat...Design and implementation of optical character recognition using template mat...
Design and implementation of optical character recognition using template mat...
 

Similar to Detection of crossover & bifurcation points on a retinal fundus image by analyzing neighborhood connectivity of non vascular regions around a junction point

Comparitive study of brain tumor detection using morphological operators
Comparitive study of brain tumor detection using morphological operatorsComparitive study of brain tumor detection using morphological operators
Comparitive study of brain tumor detection using morphological operators
eSAT Journals
 
Wound epithelization model by 3 d imaging
Wound epithelization model by 3 d imagingWound epithelization model by 3 d imaging
Wound epithelization model by 3 d imaging
eSAT Publishing House
 
Simulation of collision avoidance by navigation
Simulation of collision avoidance by navigationSimulation of collision avoidance by navigation
Simulation of collision avoidance by navigation
eSAT Publishing House
 
Brain tumor segmentation using asymmetry based histogram thresholding and k m...
Brain tumor segmentation using asymmetry based histogram thresholding and k m...Brain tumor segmentation using asymmetry based histogram thresholding and k m...
Brain tumor segmentation using asymmetry based histogram thresholding and k m...
eSAT Publishing House
 
A survey on nuclear to-cytoplasmic ratio analysis using image segmentation
A survey on nuclear to-cytoplasmic ratio analysis using image segmentationA survey on nuclear to-cytoplasmic ratio analysis using image segmentation
A survey on nuclear to-cytoplasmic ratio analysis using image segmentation
eSAT Journals
 
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
eSAT Journals
 
A survey on nuclear to-cytoplasmic ratio analysis
A survey on nuclear to-cytoplasmic ratio analysisA survey on nuclear to-cytoplasmic ratio analysis
A survey on nuclear to-cytoplasmic ratio analysis
eSAT Publishing House
 
Localization based range map stitching in wireless sensor network under non l...
Localization based range map stitching in wireless sensor network under non l...Localization based range map stitching in wireless sensor network under non l...
Localization based range map stitching in wireless sensor network under non l...
eSAT Publishing House
 
A brief review of segmentation methods for medical
A brief review of segmentation methods for medicalA brief review of segmentation methods for medical
A brief review of segmentation methods for medical
eSAT Publishing House
 
A brief review of segmentation methods for medical images
A brief review of segmentation methods for medical imagesA brief review of segmentation methods for medical images
A brief review of segmentation methods for medical images
eSAT Journals
 
Human identification using finger images
Human identification using finger imagesHuman identification using finger images
Human identification using finger images
eSAT Publishing House
 
Applying edge density based region growing with frame difference for detectin...
Applying edge density based region growing with frame difference for detectin...Applying edge density based region growing with frame difference for detectin...
Applying edge density based region growing with frame difference for detectin...
eSAT Publishing House
 
Analysis and Comparison of various Methods for Text Detection from Images usi...
Analysis and Comparison of various Methods for Text Detection from Images usi...Analysis and Comparison of various Methods for Text Detection from Images usi...
Analysis and Comparison of various Methods for Text Detection from Images usi...
rahulmonikasharma
 
Yawning analysis for driver drowsiness detection
Yawning analysis for driver drowsiness detectionYawning analysis for driver drowsiness detection
Yawning analysis for driver drowsiness detection
eSAT Journals
 
Yawning analysis for driver drowsiness detection
Yawning analysis for driver drowsiness detectionYawning analysis for driver drowsiness detection
Yawning analysis for driver drowsiness detection
eSAT Publishing House
 
Basic geometric shape and primary colour detection using image processing on ...
Basic geometric shape and primary colour detection using image processing on ...Basic geometric shape and primary colour detection using image processing on ...
Basic geometric shape and primary colour detection using image processing on ...
eSAT Journals
 
Multiple features based fingerprint identification system
Multiple features based fingerprint identification systemMultiple features based fingerprint identification system
Multiple features based fingerprint identification system
eSAT Journals
 
Segmentation of unhealthy region of plant leaf using image processing techniques
Segmentation of unhealthy region of plant leaf using image processing techniquesSegmentation of unhealthy region of plant leaf using image processing techniques
Segmentation of unhealthy region of plant leaf using image processing techniques
eSAT Journals
 
3 d mrf based video tracking in the compressed domain
3 d mrf based video tracking in the compressed domain3 d mrf based video tracking in the compressed domain
3 d mrf based video tracking in the compressed domain
eSAT Journals
 
3 d mrf based video tracking in the compressed domain
3 d mrf based video tracking in the compressed domain3 d mrf based video tracking in the compressed domain
3 d mrf based video tracking in the compressed domain
eSAT Publishing House
 

Similar to Detection of crossover & bifurcation points on a retinal fundus image by analyzing neighborhood connectivity of non vascular regions around a junction point (20)

Comparitive study of brain tumor detection using morphological operators
Comparitive study of brain tumor detection using morphological operatorsComparitive study of brain tumor detection using morphological operators
Comparitive study of brain tumor detection using morphological operators
 
Wound epithelization model by 3 d imaging
Wound epithelization model by 3 d imagingWound epithelization model by 3 d imaging
Wound epithelization model by 3 d imaging
 
Simulation of collision avoidance by navigation
Simulation of collision avoidance by navigationSimulation of collision avoidance by navigation
Simulation of collision avoidance by navigation
 
Brain tumor segmentation using asymmetry based histogram thresholding and k m...
Brain tumor segmentation using asymmetry based histogram thresholding and k m...Brain tumor segmentation using asymmetry based histogram thresholding and k m...
Brain tumor segmentation using asymmetry based histogram thresholding and k m...
 
A survey on nuclear to-cytoplasmic ratio analysis using image segmentation
A survey on nuclear to-cytoplasmic ratio analysis using image segmentationA survey on nuclear to-cytoplasmic ratio analysis using image segmentation
A survey on nuclear to-cytoplasmic ratio analysis using image segmentation
 
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
 
A survey on nuclear to-cytoplasmic ratio analysis
A survey on nuclear to-cytoplasmic ratio analysisA survey on nuclear to-cytoplasmic ratio analysis
A survey on nuclear to-cytoplasmic ratio analysis
 
Localization based range map stitching in wireless sensor network under non l...
Localization based range map stitching in wireless sensor network under non l...Localization based range map stitching in wireless sensor network under non l...
Localization based range map stitching in wireless sensor network under non l...
 
A brief review of segmentation methods for medical
A brief review of segmentation methods for medicalA brief review of segmentation methods for medical
A brief review of segmentation methods for medical
 
A brief review of segmentation methods for medical images
A brief review of segmentation methods for medical imagesA brief review of segmentation methods for medical images
A brief review of segmentation methods for medical images
 
Human identification using finger images
Human identification using finger imagesHuman identification using finger images
Human identification using finger images
 
Applying edge density based region growing with frame difference for detectin...
Applying edge density based region growing with frame difference for detectin...Applying edge density based region growing with frame difference for detectin...
Applying edge density based region growing with frame difference for detectin...
 
Analysis and Comparison of various Methods for Text Detection from Images usi...
Analysis and Comparison of various Methods for Text Detection from Images usi...Analysis and Comparison of various Methods for Text Detection from Images usi...
Analysis and Comparison of various Methods for Text Detection from Images usi...
 
Yawning analysis for driver drowsiness detection
Yawning analysis for driver drowsiness detectionYawning analysis for driver drowsiness detection
Yawning analysis for driver drowsiness detection
 
Yawning analysis for driver drowsiness detection
Yawning analysis for driver drowsiness detectionYawning analysis for driver drowsiness detection
Yawning analysis for driver drowsiness detection
 
Basic geometric shape and primary colour detection using image processing on ...
Basic geometric shape and primary colour detection using image processing on ...Basic geometric shape and primary colour detection using image processing on ...
Basic geometric shape and primary colour detection using image processing on ...
 
Multiple features based fingerprint identification system
Multiple features based fingerprint identification systemMultiple features based fingerprint identification system
Multiple features based fingerprint identification system
 
Segmentation of unhealthy region of plant leaf using image processing techniques
Segmentation of unhealthy region of plant leaf using image processing techniquesSegmentation of unhealthy region of plant leaf using image processing techniques
Segmentation of unhealthy region of plant leaf using image processing techniques
 
3 d mrf based video tracking in the compressed domain
3 d mrf based video tracking in the compressed domain3 d mrf based video tracking in the compressed domain
3 d mrf based video tracking in the compressed domain
 
3 d mrf based video tracking in the compressed domain
3 d mrf based video tracking in the compressed domain3 d mrf based video tracking in the compressed domain
3 d mrf based video tracking in the compressed domain
 

More from eSAT Journals

Mechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementsMechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavements
eSAT Journals
 
Material management in construction – a case study
Material management in construction – a case studyMaterial management in construction – a case study
Material management in construction – a case study
eSAT Journals
 
Managing drought short term strategies in semi arid regions a case study
Managing drought    short term strategies in semi arid regions  a case studyManaging drought    short term strategies in semi arid regions  a case study
Managing drought short term strategies in semi arid regions a case study
eSAT Journals
 
Life cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreLife cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangalore
eSAT Journals
 
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialsLaboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
eSAT Journals
 
Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...
eSAT Journals
 
Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...
eSAT Journals
 
Influence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizerInfluence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizer
eSAT Journals
 
Geographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementGeographical information system (gis) for water resources management
Geographical information system (gis) for water resources management
eSAT Journals
 
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
eSAT Journals
 
Factors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteFactors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concrete
eSAT Journals
 
Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...
eSAT Journals
 
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
eSAT Journals
 
Evaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabsEvaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabs
eSAT Journals
 
Evaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaEvaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in india
eSAT Journals
 
Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...
eSAT Journals
 
Estimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodEstimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn method
eSAT Journals
 
Estimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniquesEstimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniques
eSAT Journals
 
Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...
eSAT Journals
 
Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...
eSAT Journals
 

More from eSAT Journals (20)

Mechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementsMechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavements
 
Material management in construction – a case study
Material management in construction – a case studyMaterial management in construction – a case study
Material management in construction – a case study
 
Managing drought short term strategies in semi arid regions a case study
Managing drought    short term strategies in semi arid regions  a case studyManaging drought    short term strategies in semi arid regions  a case study
Managing drought short term strategies in semi arid regions a case study
 
Life cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreLife cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangalore
 
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialsLaboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
 
Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...
 
Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...
 
Influence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizerInfluence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizer
 
Geographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementGeographical information system (gis) for water resources management
Geographical information system (gis) for water resources management
 
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
 
Factors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteFactors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concrete
 
Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...
 
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
 
Evaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabsEvaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabs
 
Evaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaEvaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in india
 
Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...
 
Estimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodEstimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn method
 
Estimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniquesEstimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniques
 
Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...
 
Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...
 

Recently uploaded

Literature Review Basics and Understanding Reference Management.pptx
Literature Review Basics and Understanding Reference Management.pptxLiterature Review Basics and Understanding Reference Management.pptx
Literature Review Basics and Understanding Reference Management.pptx
Dr Ramhari Poudyal
 
Understanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine LearningUnderstanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine Learning
SUTEJAS
 
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
IJECEIAES
 
Engine Lubrication performance System.pdf
Engine Lubrication performance System.pdfEngine Lubrication performance System.pdf
Engine Lubrication performance System.pdf
mamamaam477
 
A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...
nooriasukmaningtyas
 
Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...
Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...
Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...
IJECEIAES
 
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
University of Maribor
 
5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...
5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...
5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...
ihlasbinance2003
 
132/33KV substation case study Presentation
132/33KV substation case study Presentation132/33KV substation case study Presentation
132/33KV substation case study Presentation
kandramariana6
 
Unit-III-ELECTROCHEMICAL STORAGE DEVICES.ppt
Unit-III-ELECTROCHEMICAL STORAGE DEVICES.pptUnit-III-ELECTROCHEMICAL STORAGE DEVICES.ppt
Unit-III-ELECTROCHEMICAL STORAGE DEVICES.ppt
KrishnaveniKrishnara1
 
Manufacturing Process of molasses based distillery ppt.pptx
Manufacturing Process of molasses based distillery ppt.pptxManufacturing Process of molasses based distillery ppt.pptx
Manufacturing Process of molasses based distillery ppt.pptx
Madan Karki
 
The Python for beginners. This is an advance computer language.
The Python for beginners. This is an advance computer language.The Python for beginners. This is an advance computer language.
The Python for beginners. This is an advance computer language.
sachin chaurasia
 
ML Based Model for NIDS MSc Updated Presentation.v2.pptx
ML Based Model for NIDS MSc Updated Presentation.v2.pptxML Based Model for NIDS MSc Updated Presentation.v2.pptx
ML Based Model for NIDS MSc Updated Presentation.v2.pptx
JamalHussainArman
 
Heat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation pptHeat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation ppt
mamunhossenbd75
 
Casting-Defect-inSlab continuous casting.pdf
Casting-Defect-inSlab continuous casting.pdfCasting-Defect-inSlab continuous casting.pdf
Casting-Defect-inSlab continuous casting.pdf
zubairahmad848137
 
Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...
IJECEIAES
 
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
insn4465
 
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressionsKuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
Victor Morales
 
Eric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball play
Eric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball playEric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball play
Eric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball play
enizeyimana36
 
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Sinan KOZAK
 

Recently uploaded (20)

Literature Review Basics and Understanding Reference Management.pptx
Literature Review Basics and Understanding Reference Management.pptxLiterature Review Basics and Understanding Reference Management.pptx
Literature Review Basics and Understanding Reference Management.pptx
 
Understanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine LearningUnderstanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine Learning
 
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
 
Engine Lubrication performance System.pdf
Engine Lubrication performance System.pdfEngine Lubrication performance System.pdf
Engine Lubrication performance System.pdf
 
A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...
 
Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...
Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...
Redefining brain tumor segmentation: a cutting-edge convolutional neural netw...
 
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
 
5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...
5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...
5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...
 
132/33KV substation case study Presentation
132/33KV substation case study Presentation132/33KV substation case study Presentation
132/33KV substation case study Presentation
 
Unit-III-ELECTROCHEMICAL STORAGE DEVICES.ppt
Unit-III-ELECTROCHEMICAL STORAGE DEVICES.pptUnit-III-ELECTROCHEMICAL STORAGE DEVICES.ppt
Unit-III-ELECTROCHEMICAL STORAGE DEVICES.ppt
 
Manufacturing Process of molasses based distillery ppt.pptx
Manufacturing Process of molasses based distillery ppt.pptxManufacturing Process of molasses based distillery ppt.pptx
Manufacturing Process of molasses based distillery ppt.pptx
 
The Python for beginners. This is an advance computer language.
The Python for beginners. This is an advance computer language.The Python for beginners. This is an advance computer language.
The Python for beginners. This is an advance computer language.
 
ML Based Model for NIDS MSc Updated Presentation.v2.pptx
ML Based Model for NIDS MSc Updated Presentation.v2.pptxML Based Model for NIDS MSc Updated Presentation.v2.pptx
ML Based Model for NIDS MSc Updated Presentation.v2.pptx
 
Heat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation pptHeat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation ppt
 
Casting-Defect-inSlab continuous casting.pdf
Casting-Defect-inSlab continuous casting.pdfCasting-Defect-inSlab continuous casting.pdf
Casting-Defect-inSlab continuous casting.pdf
 
Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...
 
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
 
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressionsKuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
 
Eric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball play
Eric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball playEric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball play
Eric Nizeyimana's document 2006 from gicumbi to ttc nyamata handball play
 
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
 

Detection of crossover & bifurcation points on a retinal fundus image by analyzing neighborhood connectivity of non vascular regions around a junction point

  • 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 479 DETECTION OF CROSSOVER & BIFURCATION POINTS ON A RETINAL FUNDUS IMAGE BY ANALYZING NEIGHBORHOOD CONNECTIVITY OF NON-VASCULAR REGIONS AROUND A JUNCTION POINT Harsh Fatepuria1 , Govind Singhania2 , Nishit Shah3 , Rahul Singh4 , Nilanjana Dutta Roy5 1 Student, Computer Science & Engineering Department, IEM, WB, India 2 Student, Computer Science & Engineering Department, IEM, WB, India 3 Student, Computer Science & Engineering Department, IEM, WB, India 4 Student, Computer Science & Engineering Department, IEM, WB, India 5 Assistant Professor, Computer Science & Engineering Department, IEM, WB, India Abstract Over the last few decades, analysis of retinal vascular images has gained its popularity among the cyber scientists. Retina is unique in nature because of its most important feature, bifurcation & crossover points, serving reliable authentication basis. Using these two points many problem of authentication could be handled easily. Literature has shown that in a retinal vascular structure, bifurcation& crossover points need to be separated for the purpose of authentication. With this motivation in mind, we propose a novel method to segregate vascular bifurcation points from crossover points in any retinal image by analyzing neighborhood connectivity of non- vascular regions around a junction point on retinal blood vessels. Keywords: Retinal vessel analysis, retinal blood vessels, bifurcation and crossover point’s detection. ----------------------------------------------------------------------***----------------------------------------------------------------------- 1. INTRODUCTION With the immense growth of digital automation, the demand for the automated computer-aided analysis of medical images has been emerging as a potential research domain. The multifarious growth of Internet technology in modern cyber age has been producing alarming threat to the traditional security system. To ensure better security, cyber scientists are searching for biometric features as the basis of authentication. The motive behind using the biological features is its uniqueness in nature. Retina is one of the most secure, reliable, trustworthy sources of biometric authentication. Retina is unique because of its anatomical structure of retinal nerves. One of the unique features of retina is the bifurcation point [7]. It is basically a junction on a vessel from where two other child nerves are generated [Fig. 2]. The proposed algorithm focuses on determining the potential bifurcation and crossover points from the segmented binary fundus images of retina collected from DRIVE database [5]. The analysis of geometrical properties of branching structure is not new but retinal blood vessel tree geometry and topology has not been widely studied by means of image processing. Perez et al. [3] proposed a geometric feature based technique for detecting vascular bifurcation and crossover points (landmarks) based on skeletonized vascular network. They characterize the bifurcation and crossover points by the total number of intersections using a fixed-size circular window centered on the candidate landmark points. This process extracts the morphological features to identify the landmarks of retinal vascular tree. However, it fails when two true bifurcation points are very close window. This process is also prone to false identifying landmarks if another vessel passes through the fixed-size window. Jung et al. [2] proposed cross perpendicular structure and Y-type structure with eight connected neighbors for vascular landmarks extraction. Bevilacqua et al. [1] and Chanwimaluang et al. [4] also proposed similar techniques to detect landmarks based on some specific formation of vessel centre-line pixels analyzing their eight- connectivity nature. But all these methods tend to detect landmarks wrongly due to the error induced by skeletonization because of abrupt change of the width of any vessel within the mask window. In this paper, a novel but simple approach is proposed to detect the vessel bifurcation and crossover points analyzing the intersection/junction regions on the blood vessels. Next section introduces the proposed method of vessel bifurcation along with brief background knowledge of retinal image analysis. The rest of the paper is organized as follows. The detailed illustration of the proposed algorithm is provided in section 2. Section 3 provides the experimental results, after which the conclusion is drawn followed by references.
  • 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 480 2. PROPOSED SCHEME One of the unique features of any human retina is its Bifurcation & Crossover points. Bifurcation is basically a junction (Fig. 2) on a vessel from where two other child nerves are generated. On the other hand, when two vessels or branches of two vessels meet at a point then it is termed as Crossover (Fig. 1). Statistical analysis has shown that in a retinal vascular structure, bifurcation & crossover points are the most important features used for many purposes. Therefore the proposed algorithm has been attempted for pointing out the prominent bifurcation & crossover points on the retinal blood vessels. The overall scheme is outlined below. The scheme takes vessel segmented binary image as input (Fig. 4). The vessels can be extracted from the fundus image (Fig 3) by various image filtering techniques as discussed in [2, 4]. Fig -1: A window detected as crossover because of four black regions. Fig -2: A window detected as bifurcation because of three black regions. Start traversing the border pixels of the image from the top left corner in anticlockwise way. Mark the first black pixel as region 1. Continue to traverse the image until there is a transformation from white pixel to black pixel. Apply Breadth First Search algorithm to check whether the new black pixel meets any other previously found black region. If it does not meet, increment the region number, otherwise not. Similarly, traverse all the border pixels and keep counting the number of total black regions. If number of black regions is equal to three, it is a bifurcation (Fig 2); and if the number of black regions exceeds 3, then it is crossover (Fig 1). Fig -3 Image from DRIVE database Fig -4 Vessel segmented image from DRIVE database 3. PROPOSED ALGORITHM Input: Vessel Segmented Binary Fundus Image (fig 4) Output: Image showing bifurcation & crossover points Step 1 Consider a window with maximum number of white pixels as the root. Step 2 A square window is traversed throughout the image row wise to count the number of black regions in the window. Step 2.1 To count the black regions, initialize a variable (count) as 1. Step 2.2 If the first (top left) pixel is black, insert its location in an array with region number 1 and increment count variable. Step 2.3 Traverse the border pixels of the box in anticlockwise direction. Step 2.4 On detecting a change in color from white to black (let the black pixel be called BP), follow Step 2.4.1 otherwise continue traversing the border pixels. Step 2.4.1 If the count variable equals 2, insert the black pixel’s (i.e., BP’s) locations in the previous mentioned array
  • 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 481 with region number 2 and increment count; otherwise using BFS (Breadth First Search) technique add all the neighboring (i.e., top, bottom, left and right) black pixels of BP in a queue to see whether it meets any black pixel already present in the previous array. Step 2.4.2 If it does not meet any black pixel present in the array, insert BP’s locations in the array with the count value as region number; and increment the count variable; otherwise continue traversing the border pixels. Step 2.5 Return the number of black regions in the box as (count-1). Step 3 If the number of black regions is less than or equal to 2, ignore the box. Step 4 If the number of black regions is equal to 3, color the region red, indicating bifurcation. Step 5 If the number of black regions is greater than 3, color the region blue, indicating crossover. 4. EXPERIMENTAL RESULTS - Crossover Points - Bifurcation Points 4.1 Results on cropped images taken from Drive Database Showing Crossover & Bifurcation Points Fig -5 Fig -6 Fig -7 4.2 Results on Fundus Images taken from Drive Database Table-1: Results 1 INPUT IMAGE
  • 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 482 OUTPUT IMAGE 2 INPUT IMAGE OUTPUT IMAGE 3 INPUT IMAGE OUTPUT IMAGE 4 INPUT IMAGE
  • 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 483 OUTPUT IMAGE 5 INPUT IMAGE OUTPUT IMAGE 6 INPUT IMAGE OUTPUT IMAGE 4.3 Calculation of Crossover Points with Success Rate Images Total number of crossover points estimated Number of crossover points detected by the proposed algorithm Success Rate (%) Image1 21 16 76 Image2 21 18 86 Image3 25 21 84 Image 4 27 23 85 Image 5 24 22 92 Image 6 20 14 70 Average Success Rate 82
  • 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 484 5. CONCLUSIONS In this paper, a novel method is proposed to separate vascular bifurcation points from its crossover points in any retinal images by analyzing neighborhood connectivity of non- vascular regions around a junction point on retinal blood vessels. Statistical analysis has shown that the result of this scheme is effective in separating the prominent bifurcation points from crossover points with reasonable accuracy and time. By using this concept, in near future, preparing the authentication-based schemes would be much easier. The results are generated in C language using gcc compiler and it is tested on Intel i3 processor with 4 GB RAM REFERENCES [1]. V. Bevilacqua, S. Cambo, L. Cariello, and G. Mastronardi, ìa combined method to detect retinal fundusfeatures,î Proceedings of European Conference on Emergent Aspects in Clinical Data Analysis, pp. 1ñ6, 2005. [2]. Eunhwa Jung and Kyungho Hong, ìAutomatic retinal vasculature structure tracing and vascular landmark extraction from human eye image,î Proceedings of IEEE International Conference on Hybrid Information Technology, vol. 12, pp. 161ñ167, 2006. [3]. M. E. Martinez-Perez, A. D. Highes, A. V. Stanton, S.A.Thorn, N. Chapman, and A. A. Bharath K. H. Parker,ìRetinal vascular tree International Journal of Latest Research in Science and Technology. ISSN: 2278-5299 108 morphology: a semi-automatic quantification,î IEEE Transactions on Biomedical Engineering, vol. 49(8), 2002. [4]. T Chanwimaluang and Guoliang Fan, ìAn efficient blood vessel detection algorithm for retinal images using local entropy thresholding ,î Proceedings of the 2003 International Symposium on Circuits and Systems, vol. 5, 2003. [5]. The DRIVE database, ìImage sciences institute, university medical center utrecht,î The Netherlands. http://www.isi.uu.nl/Research/Databases/DRIVE/, last accessed on 7th July 2007 [6]. W. K. Pratt, Digital Image Processing, Prentice Hall, second edition, 1991. Milan Sonka, Vaclav Hlavac, and Roger Boyle, Image Processing, Analysis and Machine Vision, PWS Publishing, second edition, 1999. [7]. Automatic detection of bifurcation points in retinal fundus-images 1Sourav Saha, 2Nilanjana Dutta Roy, International Journal of Latest Research in Science and Technology ISSN (Online): 2278-5299 Volume 2,Issue 2: Page No.105-108, March - April (2013) http://www.mnkjournals.com/ijlrst.htm [8]. Model-Based Method for Improving the Accuracy And Repeatability of Estimating Vascular Bifurcations And Crossovers From Retinal Fundus Images Chia-Ling Tsai, Member, IEEE, Charles V. Stewart, Member, IEEE, Howard L. Tanenbaum, and Badrinath Roysam, Member, IEEE