Path: /upload/<group_id>/<face_id>
Method: POST
Content-Type: multipart/form-data
Payload:
file=<Image File Object>
Status: 200
Content-Type: application/json
Payload:
{"ok":true,"msg":"Upload success: group_id=<group_id> face_id=<face_id>"}
Path: /recognize/<group_id>
Method: POST
Content-Type: multipart/form-data
Payload:
file=<Image File Object>
keys=Alice|Bob|Cathy (Optional)
Status: 200
Content-Type: application/json
Payload:
{"ok":true,"msg":"Matched <n> faces.","data":["<face_id_1>","<face_id_2>",...]}
Status: 400
Content-Type: application/json
Payload:
{"ok":false,"msg":"<reason>"}
See ./main.py --help
form more information.
./main.py runserver
Or ignore the default command name:
./main.py
./main.py upload <group_id> <face_id> --file <image_path>
Matches all the faces in the group.
./main.py recognize <group_id> --file <image_path>
Matches the faces with specific face names in the group.
./main.py recognize <group_id> [<face1>|<face2>|...] --file <image_path>