赞
踩
import cv2 as cvimport numpy as np
#导入库print("-------------------------------")
image = cv.imread("D:/1.jpeg") #写入图像cv.imshow("image",image) #显示cv.waitKey() #等待cv.destroyAllWindows() #关闭所有窗口cv.imwrite("D:\\2.jpeg",image) #保存图像
首先要导入cv2 和numpy函数库,第四行的cv.imread()函数用于写入一个图像,imred()函数原型Mat
imread(const
String&
filename,int
flags =
IMREAD_COLOR);返回Mat对象,第一个参数是文件的绝对路径,但并不是支持所有文件对象,它支持的文件如下:
l Windows bitmaps - *.bmp, *.dib
(always supported)
l JPEG files - *.jpeg, *.jpg, *.jpe
(see the Notes section)
l JPEG 2000 files - *.jp2 (see the
Notes section)
l Portable Network Graphics - *.png
(see the Notes section)</
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。