Read img restored

This commit is contained in:
Sefik Ilkin Serengil 2023-04-29 17:23:15 +01:00 committed by GitHub
parent aa4e4abe30
commit 16fa3c2969
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -104,14 +104,14 @@ def load_image(img):
raise ValueError(f"Confirm that {img} exists")
# For reading images with unicode names
# with open(img, "rb") as img_f:
# chunk = img_f.read()
# chunk_arr = np.frombuffer(chunk, dtype=np.uint8)
# img = cv2.imdecode(chunk_arr, cv2.IMREAD_COLOR)
# return img
with open(img, "rb") as img_f:
chunk = img_f.read()
chunk_arr = np.frombuffer(chunk, dtype=np.uint8)
img = cv2.imdecode(chunk_arr, cv2.IMREAD_COLOR)
return img
# This causes troubles when reading files with non english names
return cv2.imread(img)
# return cv2.imread(img)
# --------------------------------------------------