Skip to content

cydlos/facial_recognition

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 

Repository files navigation

FACIAL RECOGNITION APP

Overview

This Face Recognition App is a Python application that utilizes the face_recognition library to compare faces between two images. It detects all faces present in each image, extracts their features, and then compares these features to find matches. The app can identify if a person in the first image appears in the second image, making it useful for various applications such as verifying identities or finding similar faces in different photos.

Requirements

  • Python 3.6 or higher
  • face_recognition library

Installation

First, you need to install the face_recognition library. This can be done by running the following command in your terminal:

pip install face_recognition

Usage

  1. Place the images you want to compare in a known directory.
  2. Edit the script to update the paths to your images accordingly:
imagem1 = face_recognition.load_image_file("path_to_your_first_image.jpg")
imagem2 = face_recognition.load_image_file("path_to_your_second_image.jpg")

About

Basic facial recognition app in Python

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages