how to process this method

2 vues (au cours des 30 derniers jours)
Pat
Pat le 24 Sep 2011
I am working on finger print recognisation,i have basic gabor filter ,but dont know how to process it with my finger print image, can any one tell please
R = 128;
C = 128;
Kmax = pi / 2;
f = sqrt( 2 );
Delt = 2 * pi;
Delt2 = Delt * Delt;
% Show the Gabor Wavelets
for v = 0 : 4
for u = 1 : 8
GW = GaborWavelet ( R, C, Kmax, f, u, v, Delt2 ); % Create the Gabor wavelets
figure( 2 );
subplot( 5, 8, v * 8 + u ),imshow ( real( GW ) ,[]); %
Show the real part of Gabor wavelets
end
figure ( 3 );
subplot( 1, 5, v + 1 ),imshow ( abs( GW ),[]); % Show the magnitude of Gabor wavelets
end

Réponses (1)

Yingquan Li
Yingquan Li le 25 Sep 2011
Sorry I can't help, but your project seems so cool!

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by