Rectangle
Create Rectangle Label for Object Detection
- 1.Type label name in the "Name*" form
- 2.Rectangle is default in "Type*" dropdown
- 3.Select label color from "Color*" menu
- 4.Click "Create" button
- 5.Repeat as needed for multiple labels .

Rectangles enable object detection.
Architectures such as R-CNN, YOLO and SSD support rectangles (also known as bounding boxes) as input. Some use cases include detecting people in photos, buildings in satellite imagery, and gunshots in audio spectrograms.

Three Cheetahs detected
This is useful for having classes associated with higher level instances. Example: drawing rectangles around birds for object detection, but having a class for types of bird within the rectangle (Duck, Geese, etc...).
- 1.Click "+ Add Sublables"
- 2.Type a sub-label name
- 3.Choose sub-label type
- 4.Fill out label options
- 5.Click "Save"
The Rectangle schema element creates an array of objects with data consisting of minimum and maximum XY coordinates. These minimum and maximum values define the boundaries of the rectangle. The XY coordinate values are relative (0.0 to 1.0) to width and height respectively.
[
0:{
"type":"rectangle"
"data":{
"min":[
0:0.41
1:0.59
]
"max":[
0:0.44
1:0.7
]
}
}
]
Last modified 3yr ago