LiJiEGG
LiJiEGG
I have also encountered this problem. Is there a solution?
兄弟,你那个咋样了,我也用yolov8替换了,我感觉效果不如v5呢
You can try debugging to view internal data changes. The main reason is that the output results of YOLOv5 and YOLOv8 are not in the same format, and YOLOv8's output...
while not cap.end: ret, img = cap.read() if not ret: continue results = model([img]) predicts_xyxy = [] for result in results: yolo_deepsort.ims = result.orig_img yolo_deepsort.names = result.names yolo_deepsort.shape = result.boxes.shape...