Skip to content

adrianojfg/face_compare

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Face compare based on Face Recognition

Web service in python that use face recognition method (https://github.com/ageitgey/face_recognition) to compare two faces (face distance method)

Run web server at localhost with port 5001:

docker compose up

Example of upload two images and compare it:

curl --location 'http://localhost:5001' \
--form 'file1=@"///image1.jpg"' \
--form 'file2=@"///image2.jpg"'

Example of return (JSON) - HTTP 200 OK:

{
    "face_distance": 0.49
}

About

Web service in python that use face recognition method to compare two faces (face distance method)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors