What is the .udt.json format?
{
"interface": {
"type": "<some_interface>"
// ... more interface details
},
"samples": [
{ /* sample json object */ },
// ...
]
}{
"interface": {
"type": "image_segmentation",
"labels": [
{
"id": "cat",
"description": "Feline Mammal"
},
{
"id": "dog",
"description": "Canine Mammal"
}
],
"regionTypesAllowed": ["bounding-box"],
"multipleRegions": true
},
"samples": [
{
"imageUrl": "https://media.gettyimages.com/photos/dog-and-cat-picture-id151350785"
},
{
"imageUrl": "https://media.gettyimages.com/photos/guess-who-rules-the-roost-in-that-house-picture-id500927195"
},
{
"imageUrl": "https://media.gettyimages.com/photos/she-simply-loves-animals-picture-id499806311"
}
]
}Principles
Last updated