tfm.vision.box_ops.yxyx_to_xywh

Converts boxes from ymin, xmin, ymax, xmax to xmin, ymin, width, height.

boxes a numpy array whose last dimension is 4 representing the coordinates of boxes in ymin, xmin, ymax, xmax order.

boxes a numpy array whose shape is the same as boxes in new format.

ValueError If the last dimension of boxes is not 4.