@@ -20,12 +20,15 @@ void preprocess(uint8_t* src, AffineMatrix d2s, int src_width, int src_height,
2020 cudaStream_t stream);
2121
2222
23- void postprocess_box (float * predict, int num_bboxes, int num_out , int num_classes , float conf_thr,
23+ void postprocess_box (float * predict, int num_bboxes, int num_classes , int num_out , float conf_thr,
2424 float nms_thr, cudaStream_t stream, float * dst);
2525
26- void yolov8_postprocess_box (float * predict, int num_bboxes, int num_out , int num_classes , float conf_thr,
26+ void yolov8_postprocess_box (float * predict, int num_bboxes, int num_classes , int num_out , float conf_thr,
2727 float nms_thr, cudaStream_t stream, float * dst);
2828
29+ void rtdetr_postprocess_box (float * predict_box, float * predict_cls, int num_bboxes, int num_classes, int num_out,
30+ float conf_thr, int imageWidth, int imageHeight, cudaStream_t stream, float * dst);
31+
2932void postprocess_box_mask (float * predict, int num_bboxes, int num_classes, int num_out,
3033 float conf_thr, float nms_thr, cudaStream_t stream, float * dst);
3134
0 commit comments