Landmark Recognition
Module Description
Landmark Recognition identifies all important sights, architectural structures and natural monuments across the world. Easily archive and retrieve visual material showing places of interest for content creation.
Module ID: landmark_recognition
Module Parameters
Name | Type | Default | Description |
---|---|---|---|
model | string | general-b | The name or the ID of the model to use (See Model Resource). |
min_similarity | number | 0.75 | Only return predictions with at least higher similarity than this threshold (range from 0.0 to 1.0). |
Pre-trained models
Name | Description |
---|---|
general-b | Important sights, architectural structures and natural monuments across Europe + North America |
europe | Important sights, architectural structures and natural monuments only across Europe |
There is also a general-a model for testing purpose. Using general-b is recommended.
Module-specific Webhooks
Event | Description |
---|---|
job.landmark_recognition.on_segment_start |
Landmark segment started (landmark appeared in the live stream) |
job.landmark_recognition.on_segment_end |
Landmark segment ended (landmark disappeared in the live stream) |
See more about Webhooks.
Example
Send the following JSON as request body via POST to the /jobs/
endpoint:
{
"sources": [
"{url-to-your-image}"
],
"modules": {
"landmark_recognition": {
"model": "general-b"
}
}
}