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.

need matlab code for fingerprint enhancement

Status
Not open for further replies.

sandhyasuvit

Newbie level 2
Newbie level 2
Joined
Aug 24, 2013
Messages
2
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Visit site
Activity points
9
hi
I am doing a project based on fingerprint enhancement in matlab. So could you pls provide me with the sufficient code for doing this....
 

hey..this code just enhances the fingerprint..

I = imread('fingerprint (16)--ii.png');
figure,imshow(I)
I1 = rgb2gray(I);
figure,imshow(I1)
I2 = im2bw(I1,0.23); // here i have selected 0.23 as my level.. u can select a level based on the entire picture colour
figure,imshow(I2)
I3 = imcomplement(I2);
figure,imshow(I3)


i have used this code to enhance fingerprints on a dark background..
if this doesnt work..try using edge detection and other threshold functions..
i have also added my first input image..and my final image..!!
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top