Mixpeek Logo
    Schedule Demo
    Image

    Landmark Detection

    Identify famous landmarks and locations in 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 landmark detection model to use. Default: landmark-detector-v2

    Minimum confidence threshold for detection. Default: 0.7

    Whether to include geographic coordinates. Default: true

    Maximum number of landmarks to detect. Default: 5

    Output

    {
    "landmarks": [
    {
    "name": "Eiffel Tower",
    "confidence": 0.97,
    "location": {
    "latitude": 48.8584,
    "longitude": 2.2945
    },
    "bbox": [
    145,
    30,
    476,
    580
    ]
    }
    ],
    "country": "France",
    "city": "Paris"
    }