path="/根目錄/test.jpg"
將
img=cv2.imread(path,cv2.IMREAD_UNCHANGED)
改成:
img=cv2.imdecode(np.fromfile(path,dtype=np.uint8),cv2.IMREAD_UNCHANGED)
path="/根目錄/test.jpg"
將
img=cv2.imread(path,cv2.IMREAD_UNCHANGED)
改成:
img=cv2.imdecode(np.fromfile(path,dtype=np.uint8),cv2.IMREAD_UNCHANGED)