This is the official cloud backend software for Zeta. The other components of Zeta can be found
Raspberry Pi Software for Image Delivery
Zeta is authenticated through tokens
Send a POST Request to /api/image/upload
Sample Code.
import time
import requests
url = "http://.../api/upload/image"
image = open("test.png", 'rb').read()
token = "..."
files = {'image': open('test.png','rb')}
values = {"token":token}
response = requests.post(url, files=files, data=values)
@params:
token - the JWT token
path - the image path to delete
For example
http://0.0.0.0/api/deleteImage?token=somejwttokenhere&path=somerandompath.png
This is a valid request
All Routes are prefixed with /api/ml/
to indicate their nature.
Returns face data. Draws hitboxes for you.
Returns classification data. For eg: people, cats, dogs, fruits, vehicles.
Returns dominant color data
Returns OCR data