MuhammadSheraza002/facial-emotion-detection-backend
0
EmotionAI Backend API ๐ญ
FastAPI-based REST API for facial emotion detection using ResNet50V2 deep learning model.
API Endpoint
- POST
/predict-image/โ Upload an image to detect emotion - GET
/docsโ Swagger UI for API testing
Emotions Detected
Angry, Disgust, Fear, Happy, Neutral, Sad, Surprise
Usage
curl -X POST "https://muhammadsheraza002-facial-emotion-detection-backend.hf.space/predict-image/" \
-H "Content-Type: multipart/form-data" \
-F "file=@path/to/image.jpg"Response:
{"emotion": "Happy"}