Mixpeek Logo
    Schedule Demo
    Image

    Product Detection

    Identify commercial products in retail and e-commerce images

    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 product detection model to use. Default: product-detector-v2

    Minimum confidence threshold for detection. Default: 0.6

    Whether to include detailed product information. Default: true

    Maximum number of products to detect. Default: 20

    Output

    {
    "products": [
    {
    "category": "Electronics",
    "type": "Smartphone",
    "brand": "Apple",
    "model": "iPhone 13",
    "confidence": 0.96,
    "bbox": [
    150,
    200,
    300,
    400
    ]
    },
    {
    "category": "Accessories",
    "type": "Headphones",
    "brand": "Sony",
    "model": "WH-1000XM4",
    "confidence": 0.91,
    "bbox": [
    350,
    150,
    480,
    220
    ]
    }
    ],
    "scene_type": "product_showcase"
    }