Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
September 27, 2020 09:02 am GMT

Face Recognition System Python

Face Recognition System in Python is a biometric technology capable of recognizing and verifying an image or video of an individual.

Facial recognition allows one to identify the system administrator.

Today, this biometric system plays a very important role in the protection of smartphones and consumers.

Lets Code face Recognition System in Python!

Face Recognition Python Algorithm

Steps to follow to make a Facial Recognition System. You can also make this system for Hardware like Raspberry pi / Arduino projects.

1.Import the needed packages.

import face_recognitionfrom PIL import Image, ImageDraw, ImageFont

2. Load image of the person

Load the image of the person on which you want to try facial recognition.

image_of_person = face_recognition.load_image_file(./img/face_models/person.jpg)

3. Store Face Encoding

This Process stores the facial features of the person.

person_face_encoding = face_recognition.face_encodings(image_of_person)[0]

Read the whole post on Face Recognition Python.


Original Link: https://dev.to/divshekhar/face-recognition-system-python-4njf

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To