Mixpeek Logo
    Schedule Demo
    Image

    Object Detection

    Identify and locate objects within images with bounding boxes

    Note: This playground provides simulated output to showcase functionality. No input data is processed or stored on our servers. Use this demo to explore the feature extractor's capabilities before integrating it into your application.

    Input

    Enter a URL to a image file

    Drag and drop a image file here, or click to browse

    The object detection model to use. Default: yolov8

    Minimum confidence threshold for detection. Default: 0.5

    Maximum number of objects to detect. Default: 100

    Specific object classes to detect. Default: all

    Output

    {
    "objects": [
    {
    "label": "car",
    "confidence": 0.97,
    "bbox": [
    125,
    220,
    380,
    320
    ]
    },
    {
    "label": "person",
    "confidence": 0.88,
    "bbox": [
    420,
    190,
    520,
    350
    ]
    }
    ],
    "total_objects": 2
    }