Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Calaculation of Interridge distance for fingerprint image

Status
Not open for further replies.

ganesh449

Junior Member level 1
Joined
Nov 30, 2010
Messages
19
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,417
**broken link removed**

In the above link before process 1 step he has taken D=6,i searched for how to find D value but when i wrote some sample code it is giving values 2.22... something .Can you correct my code and give me correct process.Thanks in advance.
I have one doubt about interridegedistance parameter that will be used for false minutiae

removal in fingerptin images comparison.In one document i found that it is calaculated using the procedure given here,we

first calculate the inter ridge distance D which is the average distance between two neighboring ridges. For this scan

each row to calculate the inter ridge distance using the formula:
Inter ridge distance = sum all pixels with values 1/row length.
Finally an averaged value over all rows gives D.
.for the above process we are considering the image obtained after

Thinning operation.Can you give the matlab code for it.otherwise i have written some code can you please check it once....
BElow is the code which i have written::
clc;
clear all;
close all;
y=ones(3);
y=[1 1 1; 1 1 1; 0 0 0 ];
[m,n]=size(y);
avgrowsum=0;
finalavgrowsum=0;
k=0;
for r=1:m
rowsum=0;
for c=1:n
if (y(r,c)>0)
rowsum=rowsum+y(r,c);
disp(rowsum)
avgrowsum = (m/rowsum);
disp(avgrowsum)
end

end


if (avgrowsum > 0)
finalavgrowsum=avgrowsum+finalavgrowsum;
k=k+1;
disp(finalavgrowsum)
end

end
disp(finalavgrowsum)
disp(k)
ffinalavgrowsum= (finalavgrowsum/k);
disp(ffinalavgrowsum)

Thanks in advance.

Regards,
GANESH
 

Attachments

  • fingerprint.zip
    323 KB · Views: 101
  • Fingerprint Images.zip
    277.3 KB · Views: 89
Last edited:

If anyone have the code of fingerprint ridge distance computation kindly email me on tariq045@gmail.com. I badly need this code. Thanks in advance
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top