A tool to detect face
Faceplusplus offers cognitive services for face detection, comparison, and searching.
import requests
url = "https://api-us.faceplusplus.com/facepp/v3/detect"
data = {
'api_key': 'YOUR_API_KEY',
'api_secret': 'YOUR_API_SECRET',
'image_url': 'YOUR_IMAGE_URL',
'return_attributes': 'gender,age,smiling,headpose,facequality,blur,eyestatus,emotion,ethnicity,purity'
}
response = requests.post(url, data=data)
print(response.json())Last 50 checks (10 min intervals)