View source on GitHub |
Converts boxes from ymin, xmin, ymax, xmax to xmin, ymin, width, height.
tfm.vision.box_ops.yxyx_to_xywh(
boxes
)
Args | |
---|---|
boxes
|
a numpy array whose last dimension is 4 representing the coordinates of boxes in ymin, xmin, ymax, xmax order. |
Returns | |
---|---|
boxes
|
a numpy array whose shape is the same as boxes in new format.
|
Raises | |
---|---|
ValueError
|
If the last dimension of boxes is not 4. |