This commit is contained in:
Nicolas Mowen 2025-03-21 18:46:27 -06:00
parent 7e4c1a5015
commit 459f87995b
2 changed files with 1 additions and 2 deletions

View File

@ -11,8 +11,8 @@ from frigate.detectors.detector_config import (
)
from frigate.util.model import (
get_ort_providers,
post_process_rfdetr,
post_process_dfine,
post_process_rfdetr,
post_process_yolov9,
)

View File

@ -95,7 +95,6 @@ def post_process_rfdetr(tensor_output: list[np.ndarray, np.ndarray]) -> np.ndarr
bbox[3],
bbox[2],
]
# print(f"found a detection {detections[i]}")
return detections