diff --git a/test.py b/test.py index 051f5fc7..9a2f7c68 100644 --- a/test.py +++ b/test.py @@ -89,7 +89,7 @@ def test( continue # Clip boxes to image bounds - clip_coords(pred, shapes[si]) + # clip_coords(pred, shapes[si]) # Append to text file # with open('test.txt', 'a') as file: diff --git a/utils/utils.py b/utils/utils.py index 6f492fcf..e0e48c04 100755 --- a/utils/utils.py +++ b/utils/utils.py @@ -130,7 +130,7 @@ def scale_coords(img1_shape, coords, img0_shape): coords[:, [0, 2]] -= (img1_shape[1] - img0_shape[1] * gain) / 2 # x padding coords[:, [1, 3]] -= (img1_shape[0] - img0_shape[0] * gain) / 2 # y padding coords[:, :4] /= gain - clip_coords(coords, img0_shape) + # clip_coords(coords, img0_shape) return coords