Harri

Results 2 comments of Harri

https://github.com/WongKinYiu/yolov9/issues/186#issuecomment-1981055108 I've tried using this function, but the bounding boxes do not give me the same results as the yolov8 method. using the function in this comment gives me completely...

this edit to the detect.py on line 133 file makes it work: ```python for *xyxy, conf, cls in reversed(det): if save_txt: # Write to file print(torch.tensor(xyxy).view(1, 4)) xywh = (torch.tensor(xyxy).view(1,...