How can i extract features from sclera blood vessel structure using gabor filter.?
显示 更早的评论
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 ??
采纳的回答
更多回答(4 个)
ANJU
2015-3-10
1 个投票
1 个评论
kapil khond
2015-3-16
@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
2015-2-17
0 个投票
can you tell how to detect sclera area from an eye ,thanks in advance
1 个评论
Image Analyst
2015-2-17
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
2015-3-9
编辑:Walter Roberson
2016-1-8
@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
2016-6-28
0 个投票
that is good for white sclera but what about red sclera. it share the same feature of skin.
类别
在 帮助中心 和 File Exchange 中查找有关 Image Category Classification 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


