ConvertBoundingBoxFormat¶
- class torchvision.transforms.v2.ConvertBoundingBoxFormat(format: Union[str, BoundingBoxFormat])[source]¶
[BETA] Convert bounding box coordinates to the given
format
, eg from “CXCYWH” to “XYXY”.Warning
The ConvertBoundingBoxFormat transform is in Beta stage, and while we do not expect major breaking changes, some APIs may still change according to user feedback. Please submit any feedback you may have in this issue: https://github.com/pytorch/vision/issues/6753, and you can also check out https://github.com/pytorch/vision/issues/7319 to learn more about the APIs that we suspect might involve future changes.
- Parameters:
format (str or datapopython:ints.BoundingBoxFormat) – output bounding box format. Possible values are defined by
BoundingBoxFormat
and string values match the enums, e.g. “XYXY” or “XYWH” etc.