How can i extract features from sclera blood vessel structure using gabor filter.?
Show older comments
Hello sir,
I want to extract features from the blood vessel structure of sclera. First sclera area is detected and then blood vessels are enhanced from the sclera portion, from that enhanced blood vessel features are to be extracted.
I am trying to do feature extraction by means of GABOR FILTER... can u please tell me sir which are feature that can be extracted by means of gabor filter ??? How can i apply gabor filter to this enhanced blood vessel structured image ??
Accepted Answer
More Answers (4)
ANJU
on 10 Mar 2015
1 vote
1 Comment
kapil khond
on 16 Mar 2015
@anju,i used frangi filter for sclera enhancement ,it worked thanks a lot,Now i will be doing feature extraction using Gray-Level Co-Occurrence Matrix (GLCM),as we know glcm gives the values of various features like contrast,correlation,energy ,homogeneity,entropy,cluster prominence,cluster shade and many more,please tell me from all these features which features are useful in "sclera based authentication ". also the output of frangi filter is attached please tell whether the output is appropriate or not.

kapil khond
on 17 Feb 2015
0 votes
can you tell how to detect sclera area from an eye ,thanks in advance
1 Comment
Image Analyst
on 17 Feb 2015
It'll be the white stuff. See this for algorithms (articles): http://www.visionbib.com/bibliography/contentspeople.html#Face%20Recognition,%20Detection,%20Tracking,%20Gesture%20Recognition,%20Fingerprints,%20Biometrics
kapil khond
on 9 Mar 2015
Edited: Walter Roberson
on 8 Jan 2016
@anju,i am doing sclera based authentication ,i got sclera area now i want to perform sclera blood vessel enhancement , i tried that using gabor filter but instead of enhancing vessels it is enhancing eye edges ,pleae tell me what changes i need to do in code or in parametrs of gabor filter ,if you have done using different method please provide its source code thanks in advance.
below is the code of gabor filter
theta=pi/2; lambda =3.5; gamma=0.3; sigma=2.8; psi=0;
sigma_x = sigma; sigma_y = sigma/gamma;
nstds = 5; xmax = max(abs(nstds*sigma_x*cos(theta)),abs(nstds*sigma_y*sin(theta)));
xmax = ceil(max(1,xmax));
ymax = max(abs(nstds*sigma_x*sin(theta)),abs(nstds*sigma_y*cos(theta)));
ymax = ceil(max(1,ymax));
xmin = -xmax;
ymin = -ymax;
[x,y] = meshgrid(xmin:xmax,ymin:ymax);
x_theta=x*cos(theta)+y*sin(theta);
y_theta=-x*sin(theta)+y*cos(theta);
gb= exp(-.5*(x_theta.^2/sigma_x^2+y_theta.^2/sigma_y^2)).*cos(2*pi/lambda*x_theta+psi);
%subplot(3,2,5); %imshow(gb); %title('theta=...'); %imagesc(gb); %colormap(gray); %title('theta=...');
image_double=im2double(K);
figure,subplot(2,2,1);
%imshow(image_double);
%figure(3);
filtered1 = conv2(image_double,gb);
%subplot(3,2,5); imshow(filtered1);
title('gabor filter when theta is pi/2');
%colormap(gray);
%title('theta=pi/2');
Mohammad Aloudat
on 28 Jun 2016
0 votes
that is good for white sclera but what about red sclera. it share the same feature of skin.
Categories
Find more on Image Category Classification in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

