Captainlululu

Results 2 comments of Captainlululu

想问下大佬 我用自己的数据集训练也都是0 怎么去改一下参数呢

> def draw_bbox(bboxs,img): bboxs_res = [] for bbox in bboxs: bbox = np.reshape(bbox,(4,2)) cv2.drawContours(img, [bbox],-1, (0, 255, 0), 2) bboxs_res.append(bbox) return bboxs_res, img > > box = self.detector.predict(img_path) #作者模型的输出 img...