yolo-fastestv2-opencv icon indicating copy to clipboard operation
yolo-fastestv2-opencv copied to clipboard

使用OpenCV部署Yolo-FastestV2,包含C++和Python两种版本的程序

Results 11 yolo-fastestv2-opencv issues
Sort by recently updated
recently updated
newest added
trafficstars

这里的top取值不应该是 `top = row_ind+j*length` 。这会导致在`i=1`时,在`outs` 取出的值无法放到`outputs`中正确的位置。 我的代码中改为 `top = row_ind*self.anchor_num+j*length` 是有效的。 https://github.com/hpc203/yolo-fastestv2-opencv/blob/f865b7c18780c5e5f699e5fcb66074fad0ba3497/main.py#L86-L91