cv2是不能直接读取带有中文目录的图片,如果要读取中文目录的图片得借助numpy
import cv2
import numpy as np
img_filename = "xx.jpg"
读取
src = cv2.imdecode(np.fromfile(img_filename, dtype=np.uint8), -1)
保存
savePath = "zz.jpg"
cv2.imencode(".jpg", src)[1].tofile(savePath)
cv2是不能直接读取带有中文目录的图片,如果要读取中文目录的图片得借助numpy
import cv2
import numpy as np
img_filename = "xx.jpg"
读取
src = cv2.imdecode(np.fromfile(img_filename, dtype=np.uint8), -1)
保存
savePath = "zz.jpg"
cv2.imencode(".jpg", src)[1].tofile(savePath)
将当前Phaser游戏运行场景保存为图片
• 在这里你将学会怎样读入一幅图像,怎样显示一幅图像,以及如何保存一幅图
<dependencies>
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M