First Review PPT (Mini Project)
First Review PPT (Mini Project)
First Review PPT (Mini Project)
1. Abstract
2. Introduction
3. Literature survey
4. Existing System
5. Proposed system
6. Architecture
7. Flow Diagram
8. Software
9. Project Implementation
10. References
ABSTRACT
Continue…
ABSTRACT
Continue…
5
INTRODUCTION
• Palm print biometric system can achieve higher accuracy than hand
geometry biometric.
• The palm print line features include principal lines, wrinkles and
ridges. Ridges are the fine lines of the palmprint.
• It requires high resolution image or inked palm print image to obtain
its features.
6
LITERATURE SURVEY
S No. Author Title Year Contributions
Hand geometry and palmprint Geometric relations for
Laura Gulyas Oldal,
1. based authentication using 2021 key point detection and
Andras kovacs
image processing palm image extraction
Continues…
LITERATURE SURVEY
Continue…
EXISTING SYSTEM
Features Extraction
Database by using DCT
Output
PROPOSED SYSTEM
Features Extraction
Database by using DWT
Output
FLOW DIAGRAM
IMAGE AQUASATION
DATABASE PRE-PROCESSING
LL
LH
IMAGE SEGMENTATION
HL HH
DWT transform
STASTICAL COMPUTATION
FEATURE VECTOR (F2) FEATURE VECTOR (F2)
EUCLIDEAN DISTANCE (D)
YES IF NO
PALM BEST MATCH MATCH NOT FOUND
D==0
SOFTWARE REQUIREMENT
• MATLAB (R2013a)
14
PROJECT IMPLEMENTATION
close all;
clear all;
clc;
warning off;
i=imread(i);
figure,imshow(i);title('Original image')
level = graythresh(i);
I=im2bw(i,level);
K = bwmorph(I,'dilate');
K=imrotate(K,-90);
figure,imshow(~K)
D = bwdist(~K,'chessboard');
m=size(D); 15
PROJECT IMPLEMENTATION
s1=m(1)/2+100;
s2=m(2)/2;
dxl=s2-128;dxh=s2+128;
dyl=s1-128;dyh=s1+128;
p=imcrop(D,[dxl dyl dxh-100 dyh]);
figure,imshow(p,[]);title('Registered Plam Print');
i=imresize(i,[256 256]);
i=im2double(i);
[cba1,cbh1,cbv1,cbd1]=dwt2(i,'bior3.9');
[cba2,cbh2,cbv2,cbd2]=dwt2(cba1,'bior3.9');
[cba3,cbh3,cbv3,cbd3]=dwt2(cba2,'bior3.9');
[csa1,csh1,csv1,csd1]=dwt2(i,'sym8');
[csa2,csh2,csv2,csd2]=dwt2(csa1,'sym8');
[csa3,csh3,csv3,csd3]=dwt2(csa2,'sym8');
[cda1,cdh1,cdv1,cdd1]=dwt2(i,'dmey');
[cda2,cdh2,cdv2,cdd2]=dwt2(cda1,'dmey');
[cda3,cdh3,cdv3,cdd3]=dwt2(cda2,'dmey');
16
REFERENCES
1. Laura Gulyas Oldal, Andras kovacs, “Hand geometry and palmprint based
authentication using image processing,” IEEE 18th International
Symposium on Intelligent Systems and Informatics • September, 2021 •
Subotica, Serbia
Continue…
REFERENCES
3. Ali Younesi and Mehdi Chehel Amirani, “Gabor Filter and Texture
based Features for Palmprint Recognition,” International Conference
on Computational Science, ICCS 2020, June 2020,Zurich, Switzerland
4. Neha Dangi and Atul Barve, “Palm Print Recognition using Steerable
Filter for Better Authentication System,” International Journal of
Computer Applications (0975 – 8887) Volume 182 – No. 15,
September 2019.
Continue…
REFERENCES
Continue…
REFERENCES