以opencv读取图像为例,其它的可以采用类似的方法:
# 读取图像,解决imread不能读取中文路径的问题 def cv_imread(filepath): cv_img = cv2.imdecode(np.fromfile(filepath, dtype=np.uint8), -1) return cv_img