object_detection
Identify and locate objects within images using AI-powered computer vision. Upload an image URL to detect various objects and their positions automatically.
Instructions
Detect objects in an image using DeepInfra OpenAI-compatible API with multimodal model.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
image_url | Yes | ||
model | No |
Input Schema (JSON Schema)
{
"properties": {
"image_url": {
"title": "Image Url",
"type": "string"
},
"model": {
"default": null,
"title": "Model",
"type": "string"
}
},
"required": [
"image_url"
],
"type": "object"
}