PROBLEM RUNING YOLOV8 ZED custom detection without any modifications

When I run the detector.py code inside the custom detection yolov8 folder I get the following error, please help.

Intializing Network…
Initializing Camera…
Initialized Camera
Ultralytics YOLOv8.0.0 Python-3.9.18 torch-2.2.0+cpu CPU
Fusing layers…
YOLOv8m summary: 218 layers, 25886080 parameters, 0 gradients, 78.9 GFLOPs
Exception in thread Thread-3:
Traceback (most recent call last):
File “C:\Users\tyler\anaconda3\envs\ZEDVISION\lib\threading.py”, line 980, in _bootstrap_inner
self.run()
File “C:\Users\tyler\anaconda3\envs\ZEDVISION\lib\threading.py”, line 917, in run
self._target(*self._args, **self._kwargs)
File “C:\Users\tyler\Documents\ZED SDK\samples\object detection\custom detector\python\pytorch_yolov8\detector.py”, line 84, in torch_thread
det = model.predict(img, save=False, imgsz=img_size, conf=conf_thres, iou=iou_thres)[0].cpu().numpy().boxes
File “C:\Users\tyler\anaconda3\envs\ZEDVISION\lib\site-packages\torch\utils_contextlib.py”, line 115, in decorate_context
return func(*args, **kwargs)
File “C:\Users\tyler\anaconda3\envs\ZEDVISION\lib\site-packages\ultralytics\yolo\engine\model.py”, line 130, in predict
predictor.setup(model=self.model, source=source)
File “C:\Users\tyler\anaconda3\envs\ZEDVISION\lib\site-packages\ultralytics\yolo\engine\predictor.py”, line 141, in setup
self.dataset = LoadImages(source, imgsz=imgsz, stride=stride, auto=pt, vid_stride=self.args.vid_stride)
File “C:\Users\tyler\anaconda3\envs\ZEDVISION\lib\site-packages\ultralytics\yolo\data\dataloaders\stream_loaders.py”, line 171, in init
raise FileNotFoundError(f’{p} does not exist’)
FileNotFoundError: [[[69 63 67]
[69 63 67]
[69 63 67]

[79 66 75]
[79 66 75]
[79 66 75]]

[[69 63 67]
[69 63 67]
[69 63 67]

[79 66 76]
[79 66 75]
[79 66 75]]

[[69 63 67]
[72 66 70]
[69 63 67]

[77 64 72]
[79 66 74]
[81 68 75]]

[[ 9 1 0]
[ 9 1 0]
[ 9 1 0]

[25 15 18]
[24 19 20]
[24 18 20]]

[[ 8 0 0]
[ 8 0 0]
[ 8 0 0]

[25 16 19]
[24 17 21]
[24 19 20]]

[[ 8 0 0]
[ 8 0 0]
[ 8 0 0]

[23 14 17]
[24 16 19]
[22 17 19]]] does not exist

Hi, according to your error log it seems you are trying to load a file that does not exist.