Mixpeek Logo
    Schedule Demo
    Image

    Logo Detection

    Identify and locate brand logos within 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 logo detection model to use. Default: logo-detector-v2

    Minimum confidence threshold for detection. Default: 0.6

    Whether to include industry classification. Default: true

    Maximum number of logos to detect. Default: 10

    Output

    {
    "logos": [
    {
    "brand": "Coca-Cola",
    "confidence": 0.98,
    "bbox": [
    220,
    150,
    320,
    190
    ],
    "industry": "Beverages"
    },
    {
    "brand": "Nike",
    "confidence": 0.87,
    "bbox": [
    450,
    270,
    510,
    320
    ],
    "industry": "Apparel"
    }
    ],
    "total_logos": 2
    }