Image Detection avatar
Image Detection

Pricing

from $3.00 / 1,000 results

Go to Apify Store
Image Detection

Image Detection

High-precision object detection powered by state-of-the-art vision models. Provide an image URL and entity list to receive precise bounding box coordinates, annotated images, and accurate counts.

Pricing

from $3.00 / 1,000 results

Rating

5.0

(1)

Developer

Gene

Gene

Maintained by Community

Actor stats

1

Bookmarked

4

Total users

1

Monthly active users

16 days ago

Last modified

Share

High-precision object detection powered by state-of-the-art vision models. Provide an image URL and entity list to receive precise bounding box coordinates, annotated images, and accurate counts.

Examples

InputOutputInputOutput
CatsDetecting catsShopping cartDetecting onions
Product listingsDetecting product listingsPolice chaseDetecting police cars

What it does

This Actor analyzes images and finds objects you specify. It returns:

  • Detection coordinates — Precise bounding box locations for each detected object
  • Annotated image — Visual output with bounding boxes drawn on the original image

Input

FieldTypeRequiredDescription
imageUrlstringYesURL of the image to analyze
categoriesstring[]YesObjects to detect (e.g., ["cat", "dog", "person"])

Example

{
"imageUrl": "https://media.hswstatic.com/eyJidWNrZXQiOiJjb250ZW50Lmhzd3N0YXRpYy5jb20iLCJrZXkiOiJnaWZcL3NodXR0ZXJzdG9jay0yMjc4Nzc2MTg3LWhlcm8uanBnIiwiZWRpdHMiOnsicmVzaXplIjp7IndpZHRoIjo4Mjh9fX0=",
"categories": ["cat"]
}

Output

Dataset

Each run produces a result with:

FieldDescription
imageUrlThe analyzed image URL
categoriesCategories you searched for
detectionsArray of detected objects with labels and bounding boxes
detectionSummaryHuman-readable summary of what was found
annotatedImageKeyKey to download the annotated image
annotatedImageContentTypeMIME type of the annotated image

Example Output

{
"imageUrl": "https://media.hswstatic.com/eyJidWNrZXQiOiJjb250ZW50Lmhzd3N0YXRpYy5jb20iLCJrZXkiOiJnaWZcL3NodXR0ZXJzdG9jay0yMjc4Nzc2MTg3LWhlcm8uanBnIiwiZWRpdHMiOnsicmVzaXplIjp7IndpZHRoIjo4Mjh9fX0=",
"categories": ["cat"],
"detections": [
{
"label": "cat",
"count": 3,
"boxes": [
{"x1": 46, "y1": 140, "x2": 401, "y2": 984},
{"x1": 305, "y1": 3, "x2": 658, "y2": 988},
{"x1": 640, "y1": 306, "x2": 934, "y2": 985}
]
}
],
"detectionSummary": "- cat: 3 instances detected",
"annotatedImageKey": "annotated-image-1766024606223.png",
"annotatedImageContentType": "image/png"
}

Key-Value Store

The annotated image with bounding boxes is saved to the key-value store with a unique timestamped key. Access it via the annotatedImageKey from the dataset output.

Use Cases

  • E-commerce — Detect products in user-uploaded images
  • Content moderation — Find specific objects in photos
  • Inventory management — Count and locate items in warehouse images
  • Wildlife monitoring — Detect animals in camera trap images
  • Quality control — Identify defects or specific components in manufacturing images

Integrations

Connect this Actor with other tools using Apify integrations:

  • Trigger detection from Zapier, Make, or n8n workflows
  • Store results in Google Sheets, Airtable, or databases
  • Send notifications when specific objects are detected