Upload Images for Button Detection
API Usage
You can use our API endpoint to detect buttons in images programmatically:
POST /api/detect
Content-Type: multipart/form-data
file=@your_image.jpg
The API will return a JSON response with detection results:
{
"success": true,
"detections": [
{
"class": "action_button",
"confidence": 0.95,
"bbox": [x1, y1, x2, y2]
},
{
"class": "close_button",
"confidence": 0.89,
"bbox": [x1, y1, x2, y2]
}
]
}
Check the API Log for examples of recent requests.
Detection Features
Action Button Detection
Detect action buttons in advertisement images with high precision using YOLOv5.
Close Button Detection
Identify close/exit buttons in advertisements for better user experience analysis.
Batch Processing
Process multiple images at once to save time and improve workflow efficiency.