๐ฏ JigsawStack Object Detection โ Replicate Wrapper
This model wraps the JigsawStack Object Detection API
This model wraps the JigsawStack Speech-to-Text API and leverages the powerful Whisper V3 model to transcribe and optionally translate audio/video files.
Detect and highlight objects in images with high accuracy using JigsawStackโs Object Detection API. This model on Replicate supports generic detection, prompt-based targeting, and optional annotated image output โ all powered by a fast and scalable vision backend.
๐ง What It Does
You provide an image (via URL or file storage key), and the model returns: - Detected objects with labels and coordinates - Optionally, an annotated image - Support for prompt-guided detection (e.g., only detect โcatโ or โhelmetโ)
๐ Inputs
Name | Type | Required | Description |
---|---|---|---|
url |
string | โ No | Public URL to an image file |
file_store_key |
string | โ No | Key of an image stored on JigsawStack File Storage |
prompts |
list of strings | โ No | Optional array of prompts (e.g. ["dog", "car"] ) for targeted detection |
features |
list of enums | โ No | Features to enable. Options: object_detection , gui . At least one required |
annotated_image |
boolean | โ No | If true , returns image with bounding boxes drawn |
return_type |
string | โ No | url or base64 image format (default: url ) |
api_key |
string | โ Yes | Your JigsawStack API key |
๐ You must provide either
url
orfile_store_key
, not both.