commit
f3e83b985c
|
@ -0,0 +1,18 @@
|
||||||
|
import os
|
||||||
|
import cv2
|
||||||
|
import numpy as np
|
||||||
|
|
||||||
|
# Utility function to support unicode characters in file paths for reading
|
||||||
|
def imread_unicode(path, flags=cv2.IMREAD_COLOR):
|
||||||
|
return cv2.imdecode(np.fromfile(path, dtype=np.uint8), flags)
|
||||||
|
|
||||||
|
# Utility function to support unicode characters in file paths for writing
|
||||||
|
def imwrite_unicode(path, img, params=None):
|
||||||
|
root, ext = os.path.splitext(path)
|
||||||
|
if not ext:
|
||||||
|
ext = ".png"
|
||||||
|
result, encoded_img = cv2.imencode(ext, img, params if params else [])
|
||||||
|
result, encoded_img = cv2.imencode(f".{ext}", img, params if params is not None else [])
|
||||||
|
encoded_img.tofile(path)
|
||||||
|
return True
|
||||||
|
return False
|
Loading…
Reference in New Issue