GitXplorerGitXplorer
s

senya

public
1 stars
2 forks
0 issues

Commits

List of commits on branch master.
Unverified
3fbe37db1951094b77e4dde00e376b121b32cf96

add research notebook

sstek29 committed 4 years ago
Unverified
76919ab6abb56aa3adcd959e22f72d123327f85c

compose v3

sstek29 committed 4 years ago
Unverified
b185d2734f2f814f49adfa3260c67649b58048d9

update readme

sstek29 committed 4 years ago
Unverified
c3664375e65edc8a2311931450f591559010cda4

compose v2

sstek29 committed 4 years ago
Unverified
d49b22513121ea6d9d49c5c5450fc4145117ee40

compose

sstek29 committed 4 years ago
Unverified
797003dadab73604439b581a9bb0e0f7ec25faff

initial commit

sstek29 committed 4 years ago

README

The README file for this repository.

senya

dead simple flask api with face recognition

usage

curl http://127.0.0.1:5000/check \
    -H 'Content-Type: image/jpeg' \
    --data-binary @photo1.jpg
with open('photo2.jpg', 'rb') as f:
    r = requests.post('http://127.0.0.1:5000/check', f, headers={
        'content-type': 'application/octet-stream',
    })
    print(r.json())

license

MIT