如何使用 OpenCV 将图像写入文件?


在本程序中,我们将使用 OpenCV 将图像或图片写入文件。

算法

Step 1: Import cv2
Step 2: Read the image using opencv.imread()
Step 3: Save the image using opencv.imwrite(filename, image)

示例代码

import cv2
import os
image = cv2.imread('testimage.jpg')
directory = r'C:\Users\prasa\Desktop'
os.chdir(directory)
cv2.imwrite('CAMERAMAN.jpg', image)

输出

This program will save the image in the directory as same as the original image directory

说明

确保已经设置了适当的目录,以便程序可以无错误地执行。

更新时间:17-Mar-2021

398 次浏览

启动您的职业生涯

通过完成课程获得认证

入门
广告