2D Bounding Box
Overview
A standard bounding box in reference to an image.
Drawing mode, Box
- Click and release left mouse button to start drawing
- Draw
- Click and release left mouse button to stop drawing
Input Format
Export Formats
TF RECORDS
Features:
'image/height': int64,
'image/width': int64,
'image/encoded': bytes,
'image/format': bytes, (default 'jpg')
'image/object/bbox/xmin': float,
'image/object/bbox/xmax': float,
'image/object/bbox/ymin': float,
'image/object/bbox/ymax': float,
'image/object/class/label': int64
Label is 0 indexed.
JSON
"1": {
"instance_list": [
{
"x_max": 747,
"x_min": 595,
"height": 162,
"type": "box",
"y_min": 336,
"y_max": 498,
}
],
"image": { }
}
General Export Info
See Export for general export information.
Updated about 5 years ago