Skip to content

Commit

Permalink
update indications.
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlos Antonio Mata Meza committed Sep 27, 2020
1 parent 94a6aff commit 5897bfa
Showing 1 changed file with 21 additions and 9 deletions.
30 changes: 21 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Teotl
## API for recognition facial
> python: version 3.6
## API for recognition and comparation facial
### Introduction
> rest api service to detect faces, with the ability to detect similarities in two images with faces
## Create with
* python: version 3.6
* Flask 1.1.2
* face-recognition 1.3.0
## Installation

* python3 -m venv ./venv
Expand All @@ -11,12 +16,19 @@

## Functions

> /compareFaces [POST]
* compare two images to find facial similarities (with format Base64 JSON)
> **/compareFaces** [POST]
>> compare two images to find facial similarities (with format Base64 JSON)
>> ### Parameters
>> * user_profile_picture : base 64 encode string of person
>> * user_webcam_photo : base 64 encode string imagen to compare
> /compareFacesPath [POST]
* compare two images to find facial similarities (with format Path request file)
> **/compareFacesPath** [POST]
>> compare two images to find facial similarities (with format Path request file)
>> ### Parameters
>> * user_profile_picture : file of person
>> * user_webcam_photo : file imagen to compare
> /detectFaces [POST]
* analyzes an image to detect faces (with format Path request file)

> **/detectFaces** [POST]
>> analyzes an image to detect faces (with format Path request file)
>> ### Parameters
>> * profile_picture : file imagen to search faces

0 comments on commit 5897bfa

Please sign in to comment.