Fingerprint Recognition Professor Ostrovsky Andrew Ackerman The Idea

  • Slides: 16
Download presentation
Fingerprint Recognition Professor Ostrovsky Andrew Ackerman

Fingerprint Recognition Professor Ostrovsky Andrew Ackerman

The Idea n Including Region information in minutiae matching Reduces amount of matches need

The Idea n Including Region information in minutiae matching Reduces amount of matches need n Can help better identify matches n

The Process n Preprocessing image n Getting image into proper input n n 24

The Process n Preprocessing image n Getting image into proper input n n 24 -bit Bitmap of ridge detail properly enclosed Thinning Image n Zhang-Suen Thinning algorithm n n Edge Enhancement n n n Fill in gaps in edges due to input quality or thinning process Code works to extent Region Coloring n n A Fast Parallel Algorithm for Thinning Digital Patterns Colors in regions Spurious Region Removal n Remove regions erroneously created in thinning process

Thinning (Zhang-Suen) n A(P) = Number of 01 patterns in order set P 2

Thinning (Zhang-Suen) n A(P) = Number of 01 patterns in order set P 2 … P 9 B(P) = Number of non-zero neighbors n Algorithm: n n n Do until picture is stable: First Subiteration: Delete P from pattern if: n n n A) 2 ≤ B(P) ≤ 6 B) A(P) = 1 C) P 2 * P 4 * P 6 D) P 4 * P 6 * P 8 Second Subiteration: Delete P from pattern if: n n n A and B same as above C’) P 2 * P 4 * P 8 D’) P 2 * P 6 * P 8

Thinning Example Spurious Regions Edge Gaps

Thinning Example Spurious Regions Edge Gaps

Scanning Image n Scan image Move a window down the image n Offset window

Scanning Image n Scan image Move a window down the image n Offset window horizontally n Offset window vertically n Offset window horizontally and vertically n

Edge Enhancement Scan the Image n For each window: n n n Find all

Edge Enhancement Scan the Image n For each window: n n n Find all the endpoints in the window For each endpoint pair Look at line that goes through the points n If line is “strong” n n Draw line between points

Region Coloring Color in Regions n Does in one scan of image n

Region Coloring Color in Regions n Does in one scan of image n

Spurious Regions Removal Scan the Image n For each window n If a region

Spurious Regions Removal Scan the Image n For each window n If a region is encased in the window and is small enough n Calculate how often the regions around it border it n Remove the border between the region and the region that least borders it n

Testing Tested 8 different fingerprints of same finger n Choose different minutiae pairs n

Testing Tested 8 different fingerprints of same finger n Choose different minutiae pairs n Calculated amount of edges crossed between the minutiae n Calculated amount of regions crossed between minutiae pair n n Compared Results

Input Fingerprints

Input Fingerprints

Output of Program

Output of Program

Minutiae Pair 1 Image 1: 13 Regions, 20 Edges n Image 2: 9 Regions,

Minutiae Pair 1 Image 1: 13 Regions, 20 Edges n Image 2: 9 Regions, 16 Edges n Image 3: 11 Regions, 19 Edges n Image 4: 11 Regions, 17 Edges n Image 5: 12 Regions, 19 Edges n Image 6: 10 Regions, 16 Edges n Image 7: 11 Regions, 15 Edges n Image 8: 13 Regions, 18 Edges n

Minutiae Pair 2 Image 1: 7 Regions, 11 Edges n Image 2: 5 Regions,

Minutiae Pair 2 Image 1: 7 Regions, 11 Edges n Image 2: 5 Regions, 13 Edges n Image 3: 6 Regions, 11 Edges n Image 4: 7 Regions, 12 Edges n Image 5: 7 Regions, 11 Edges n Image 6: 6 Regions, 10 Edges n Image 7: 4 Regions, 8 Edges n Image 8: 7 Regions, 12 Edges n

Statistics n Minutiae Pair 1 n n n Max Region Difference: Average Region Difference:

Statistics n Minutiae Pair 1 n n n Max Region Difference: Average Region Difference: Max Edge Difference: Average Edge Difference: 4 1. 64 5 2. 21 Minutiae Pair 2 n n Max Region Difference: Average Region Difference: Max Edge Difference: Average Edge Difference: 3 1. 25 5 1. 7

Future Work n Improve Preprocessing Code n n Matching Algorithm n n n Improve

Future Work n Improve Preprocessing Code n n Matching Algorithm n n n Improve on edge enhancement via algorithms that use edge orientation Using processed fingerprints, come up with algorithm that does fingerprint matching Use idea of regions and lines between minutiae Fingerprint of Fingerprint n n n Run X amount of binary tests on a fingerprint and return a vector of size X. This binary vector would identify the finger print Matching prints would have similar vectors (hamming distance) Tests could include information about minutiae as well as regions