Wasim
Sync: robust vehicle parser + full project
2e237ce
raw
history blame contribute delete
266 Bytes
from pdf_features import Rectangle
class Prediction:
def __init__(self, bounding_box: Rectangle, category_id: int, score: float):
self.bounding_box: Rectangle = bounding_box
self.category_id: int = category_id
self.score: float = score