surya/tests/test_detection.py
Vik Paruchuri 9158557600 Cleanups
2026-05-14 16:26:39 -04:00

9 lines
286 B
Python

def test_detection(detection_predictor, test_image):
detection_results = detection_predictor([test_image])
assert len(detection_results) == 1
assert detection_results[0].image_bbox == [0, 0, 1024, 1024]
bboxes = detection_results[0].bboxes
assert len(bboxes) == 4