This reverts commit 21a9607e00
.
modifyDataloader
@@ -181,7 +181,7 @@ class LoadImages: # for inference | |||
else: | |||
# Read image | |||
self.count += 1 | |||
img0 = cv2.imread(path, -1) # BGR (-1 is IMREAD_UNCHANGED) | |||
img0 = cv2.imread(path) # BGR | |||
assert img0 is not None, 'Image Not Found ' + path | |||
print(f'image {self.count}/{self.nf} {path}: ', end='') | |||