Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 733 Bytes

README.md

File metadata and controls

14 lines (11 loc) · 733 Bytes

FaceRecognitionAPI

A simple Django software that wraps OpenCV features as a RESTful API (features include face recognition, face detection and smile detection

#Installation Make sure you have OpenCV3 and Django installed. Download/Clone the project and execute
python manage.py migrate
Once migrations finish executing, run the project using
python manage.py runserver

#Usage You can use the API by making a POST request to http://localhost:8000/face_detection/recognize/. You can either pass your image as a URL (using a url field) or as a base64 encoded image (using the imageBase64 field).

Take a look at my MirrorOS Project for an example of usage of the API.