Fingerprint Matching in Python

preview_player
Показать описание
In this video we learn how to do fingerprint matching in Python.

◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾
📚 Programming Books & Merch 📚

🌐 Social Media & Contact 🌐

Timestamps:
(0:00) Intro & AI Camp
(1:36) Fingerprint Dataset
(4:31) Fingerprint Matching
(23:14) Outro
Рекомендации по теме
Комментарии
Автор

you could do this code in more pythonic ways:
1-a, b, c= None, None, None can be easily written as a=b=c=None
2-for file in [file for file in os.listdir()] can be easily written as for file in os.listdir
3-lines 20 through 24 can be easily written as a list comprehension
4-lines 26 through 30 can be easily written as keypoints=min([keypoint1, keypoint2], key=len)
5-the whole process of finding the best match could be done using the built-in max function, which is much faster

kasraeskandari
Автор

Wow this is the first helpful video on fingerprint matching I have seen!! ❤ can you please do another video on matching fingerprints of existing fingerprints in a sql database vs one taken on a live fingerprint scanner. Like seeing if they match

thefacts
Автор

Hi, I want to create a one project. The topic name is DRACING LICENCE AUTHANTICATION USING FINGERPRINT SCANNER . in which we want to designs an web application that can manage that things like scanning the user fingerprint and storing on our data base and one tab for scanning the finger for dictating the user can have driving licensee or not. if the user fingerprint matches the stored finger print templet than new window will be pop up that shows the user id, contact no, driving license number, and other information . or i want to use python language for blading that project so please help me because i don't know the roadmap or flow for building that project. please say me about this technologies and about this project.

bqvfpmm
Автор

Please tell us more about SIFT in a future video.

TejrajParab
Автор

Thank you for such amazing tutorial bro

abhinavchoudhary
Автор

The learning is incomplete, with the code omitted and without any GitHub repository so we cannot verify

thiagosousa
Автор

Awesome tutorial...
can you use the same to match two pictures e.g one from an ID and one from. a selfie ?

mrmuranga
Автор

How to add fingerprint dataset to to project folder in pycharm?

jayanthreddybonala
Автор

Hello NeuralNine, really need a set of tutorials on the raspberry pi .

dibyojyotibhattacherjee
Автор

can you please tell a bit about following line of code? What is the theory of p and q distances

if p.distance < 0.1 * q.distance

My code isn't working since the above statement is not getting true. However, if I change the value from 0.1 to something around 0.34, the code works but the final answer (finger print detection) is not exact.

Can you please help?

ammarfasih
Автор

Hello where can i get this algorithm 🙏

thomasbukanga
Автор

oo that is very usefull tutorial thank you bro🙂👍

mirolimturgunov
Автор

23:08 DOESN'T WORK FOR THE DIFFERENT SCANS OF THE SAME FINGERPRINT

ANKRY
Автор

I have two different fingerprint from same family so i want to match but it is showing some error is this the same program applicable for matching two different fingerprint

akashsoanshet
Автор

For 50 lines of code, this is quite impressive.

RogerCarelli
Автор

Need information: what program do I use to code a fingerprint matching for a project

PatriciaBoyd-rglb
Автор

did you use external devise to scan or are you using only your pc ?

tsedeymekonnen
Автор

i have an error involve with this one after using the code.

error: OpenCV(4.6.0) error: (-5:Bad argument) image is empty or has incorrect depth (!=CV_8U) in function

has anyone know how to fix this error?

aoijw
Автор

How do i add the fingerprint zip file to the SOCOfing directory as a .dir and my cv is not installing

basilmakageorge
Автор

i cant create a SIFT object at all there's no sift_create option

johnxina