Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

How to save fingerprint data in django

So I have a project where I have a model called Beneficiary where I need to store the fingerprint.

This is the model:

class Beneficiary(models.Model):
    image=models.ImageField(upload_to='home/images/',blank=True,null=True)
    name = models.CharField(max_length=200)
    gender=models.CharField(max_length=6,choices=GENDER_CHOICES,default='male')
    dob=models.DateField()
    registration_date=models.DateField()

I want to save the fingerprints of the beneficiaries in the model.
I am using DigitalPersona2 fingerprint sensor.
I am pretty new to fingerprints so can anyone help?

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

I don’t know much about DigitalPersona2, but generally, the Fingerprint device should come with an SDK, that must be installed on the system that uses the fingerprint scanner device. DigitalPersona2 would have an SDK API that would allow you to communicate with the device.

Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading