YOLO-V8-CAM
YOLO-V8-CAM copied to clipboard
Object detection cam.
I am getting similar error as https://github.com/rigvedrs/YOLO-V8-CAM/issues/8 , I dont know what is going wrong. I have rerun it multiple times. Also, I dont understand why we have to run it multiple times. For example in below it highlights everything but players and ball. I have tried using different colormaps in cv2 but the result is same.
Yes, I am getting similar errors
I have similar issue, event for the "puppies" image as follows. Ensure the model is running on the CPU, not the GPU.
model.cpu()
or
model = YOLO(f'yolov8n.pt').to('cpu')
then it works fine for me. I just submitted PR, https://github.com/rigvedrs/YOLO-V8-CAM/pull/23
It has been resolved in the update by @kimyd . Feel free to reopen it if it still comes up