Implement YOLOx for RKNN (#17788)

* Implement yolox rknn inference and post processing

* rework docs
This commit is contained in:
Nicolas Mowen
2025-04-18 14:44:02 -06:00
committed by GitHub
parent 68382d89b4
commit 1cdc9b6097
4 changed files with 169 additions and 65 deletions
+1 -1
View File
@@ -180,7 +180,7 @@ def __post_process_multipart_yolo(
x2 / width,
]
return np.array(results, dtype=np.float32)
return results
def __post_process_nms_yolo(predictions: np.ndarray, width, height) -> np.ndarray: