赞
踩
cv2.imread()读取
import cv2 img=cv2.imread('a\\img.png') print(img.shape) print(img)
保存图片
cv2.imwrite('b\\img1.png',img)#b存在就可以保存进去
如果目录b不存在就会存到当前文件夹
cv2.imwrite('b\\c\\img1.png',img)#
如果b存在,c不存在,程序不会报错,也不会保存图片
python创建文件夹
path='g\\j\\v'
if not os.path.exists(path):
os.makedirs(path)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。