Giảm 50% mô hình Vidu Q3 & Q3 Pro · Chỉ trên WaveSpeedAI | 20/5 – 2/6

Moondream3 Preview Point

wavespeed-ai /

Moondream3 Point finds objects in images and returns precise coordinate points for computer vision tasks, enabling accurate point localization. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.

image-to-text
Input

Kéo & thả hoặc nhấp để tải lên

preview
If set to true, the function will wait for the result before returning the response. This property is only available through the API.

Idle

{
  "answer": "The woman is wearing a pink baseball cap with a strap across her forehead. She is also wearing large silver hoop earrings and a pink fuzzy sweater. Her blonde hair is styled in loose waves, and she has her tongue sticking out slightly while looking directly at the camera. Behind her, there are several posters visible, including one with a pink background and an image of a cup."
}

$0.001per run·~1000 / $1

Next:

ExamplesView all

hat

person

wall

picture

mirror

person

castle

ice-cream

flower

Related Models

README

Moondream 3 — Point (Locate & Describe)

Moondream 3 Point is a vision-language model designed to identify and describe specific objects within an image using natural language. Instead of returning coordinates, it provides a concise textual description of the detected object, making it ideal for lightweight interactive queries and content understanding.

✨ Key Features

  • Locate and Describe Objects Enter a short text query (e.g., “hat”, “watch”, “phone”) and receive a natural-language description of that item in context.

  • Fast Single-Object Queries Optimized for fast, low-latency inference — perfect for real-time applications.

  • Readable Natural Output The model outputs a fluent English sentence describing the object’s appearance, position, and context.

  • Multilingual Understanding Capable of recognizing and describing objects in a wide range of visual scenarios.

⚙️ Example Usage

Locate & Describe “Hat”

{
 "image": "https://example.com/photo.jpg",
 "prompt": "hat"
}

Example Response

{
 "answer": "The woman is wearing a pink baseball cap with a strap across her forehead. She is also wearing large silver hoop earrings and a pink fuzzy sweater."
}

💡 Best Practices

  • Use concise object names (e.g., “hat”, “car”, “tree”) for more accurate detection.

  • For precise bounding boxes or coordinates, use:

  • Moondream 3 Detect — returns x_min, y_min, x_max, y_max bounding boxes.

  • A coordinate-enabled version of Moondream 3 Point (coming soon).

  • Supported formats: JPEG, PNG, WebP

  • Maximum image size: 10 MB

💰 Pricing

  • $0.001 per request
  • Volume and enterprise pricing available upon request.

📝 Notes

  • The current endpoint returns descriptive text in JSON format:
{"answer": "..."}

— it does not output coordinates.

  • For small or occluded objects, use higher-resolution input or switch to the Detect model for better spatial precision.
Accessibility:This website uses AI models provided by third parties.

Moondream3 Preview Point API — Quick start

Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/wavespeed-ai/moondream3-preview/point with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for Moondream3 Preview Point below.

HTTP example
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/wavespeed-ai/moondream3-preview/point" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY" \
  -d '{
    "prompt": "A cinematic shot of a city at sunset, soft golden light",
    "image": "https://example.com/your-input.jpg",
    "enable_sync_mode": false
}'

# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY"

# When status is "completed", read the output from data.outputs[0].
Node.js example
// npm install wavespeed
const WaveSpeed = require('wavespeed');

const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env

const result = await client.run("wavespeed-ai/moondream3-preview/point", {
        "prompt": "A cinematic shot of a city at sunset, soft golden light",
        "image": "https://example.com/your-input.jpg",
        "enable_sync_mode": false
});

console.log(result.outputs[0]); // → URL of the generated output
Python example
# pip install wavespeed
import wavespeed

output = wavespeed.run(
    "wavespeed-ai/moondream3-preview/point",
    {
    "prompt": "A cinematic shot of a city at sunset, soft golden light",
    "image": "https://example.com/your-input.jpg",
    "enable_sync_mode": false
}
)

print(output["outputs"][0])  # → URL of the generated output

Moondream3 Preview Point API — Frequently asked questions

What is the Moondream3 Preview Point API?

Moondream3 Preview Point is a WaveSpeedAI model for AI inference, exposed as a REST API on WaveSpeedAI. Moondream3 Point finds objects in images and returns precise coordinate points for computer vision tasks, enabling accurate point localization. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing. You can call it programmatically or try it from the playground above.

How do I call the Moondream3 Preview Point API?

POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/wavespeed-ai/moondream3-preview-point.

How much does Moondream3 Preview Point cost per run?

Moondream3 Preview Point starts at $0.001 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.

What inputs does Moondream3 Preview Point accept?

Key inputs: `prompt`, `image`, `enable_sync_mode`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/wavespeed-ai/moondream3-preview-point.

How long does Moondream3 Preview Point take to generate?

Average end-to-end generation time on WaveSpeedAI is around 5 seconds per request — measured across recent runs. Queue time scales with global demand; live status is visible in the prediction record.

Can I use Moondream3 Preview Point outputs commercially?

Commercial usage rights depend on the model's license, set by its provider (WaveSpeedAI). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.