Signature Detection Demo
Signature Detector
Upload an image to detect signatures
Examples
Signature Detection API
For programmatic access
Examples
API Usage Instructions
You can use this API endpoint from your applications by sending a POST request:
Method 1 (Latest Gradio API, recommended):
POST /predict
{
"data": ["data:image/jpeg;base64,your_base64_encoded_image"]
}
Method 2 (Standard API):
POST /api/predict
{
"data": ["data:image/jpeg;base64,your_base64_encoded_image"]
}
Method 3 (Legacy format):
POST /run/predict
{
"fn_index": 0,
"data": ["data:image/jpeg;base64,your_base64_encoded_image"]
}
The response will contain detection results and an annotated image. See README-API.md for more details.