Image captioning, face recognition, NSFW classification
Cloudmersive offers an API for image recognition, processing, captioning, face detection, and NSFW classification.
import requests
url = "https://api.cloudmersive.com/image/recognize/describe" # Example endpoint
headers = {
"Api-Key": "YOUR_API_KEY"
}
files = {
"imageFile": open("your_image.jpg", "rb")
}
response = requests.post(url, headers=headers, files=files)
print(response.json())Last 50 checks (10 min intervals)