Appendix
Output Type
Expected Output File Type
Output File Sample
Image - Integer
TIFF File
An image file with different bands
Image - Float
TIFF File
An image file with multiple bands - they will specify what each band is, like NDMI, NDVI etc.
Segmentation - Binary Mask
TIFF File
Binary mask with 0s and 1s
Segmentation - Multi-class segmentation
TIFF File
Mask with n values in it, where n is the number of classes
Object Detection - Point
JSON
prediction: [
{
score: 0.865,
x: 12,
y: 25,
},
{
score: 0.765,
x: 34,
y: 67,
}
]
Object Detection - Bounding Box
JSON
prediction: [
{
score: 0.865,
xmin: 12,
ymin: 25,
xmax: 35,
ymax: 40
},
{
score: 0.765,
xmin: 34,
ymin: 67,
xmax: 65,
ymax: 70
}
]
Object Classification - Point
JSON
prediction: [
{
class_id: 0,
label: 'Tree',
score: 0.865,
x: 12,
y: 25
},
{
class_id: 1,
label: 'Lake',
score: 0.765,
x: 34,
y: 67
}
]
Object Classification - BBox
JSON
prediction: [
{
class_id: 0,
label: 'Tree',
score: 0.865,
xmin: 12,
ymin: 25,
xmax: 35,
ymax: 40
},
{
class_id: 1,
label: 'Lake',
score: 0.765,
xmin: 34,
ymin: 67,
xmax: 65,
ymax: 70
}
]
Last updated