Thank you! We'll be in touch ASAP.
Something went wrong, please try again or contact us directly at contact@dagshub.com
Deci-AI:master
deci-ai:bug/SG-512_shuffle_bugfix_in_recipe_datalaoders
from typing import Tuple from super_gradients.training.utils.bbox_formats.bbox_format import ( BoundingBoxFormat, ) __all__ = ["XYXYCoordinateFormat"] def xyxy_to_xyxy(x, image_shape: Tuple[int, int]): return x class XYXYCoordinateFormat(BoundingBoxFormat): """ Bounding boxes format X1, Y1, X2, Y2 """ def __init__(self): self.format = "xyxy" self.normalized = False def get_to_xyxy(self, inplace: bool): return xyxy_to_xyxy def get_from_xyxy(self, inplace: bool): return xyxy_to_xyxy
Press p or to see the previous file or, n or to see the next file