diff --git a/frigate/detectors/detection_api.py b/frigate/detectors/detection_api.py index c27e64362..a142cb0fa 100644 --- a/frigate/detectors/detection_api.py +++ b/frigate/detectors/detection_api.py @@ -72,7 +72,7 @@ class DetectionApi(ABC): def post_process(self, output): if self.detector_config.model.model_type == ModelTypeEnum.yolonas: - return self.yolonas(output) + return self.post_process_yolonas(output) else: raise ValueError( f'Model type "{self.detector_config.model.model_type}" is currently not supported.'