欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python图片批量保存(opencv)

程序员文章站 2024-01-20 21:22:28
...

python图片批量保存(opencv)

# 保存图片的地址
img_file = "E:/leetcode/Mask_RCNN-master/project/data"
# 确认上述地址是否存在
if not os.path.exists(img_file):
	os.mkdir(img_file)

for i in range(0,2):
    image, dims = draw_pic()
    #此处frame就是你需要保存的图像文件
    frame = draw_shape(image, dims)
    cv2.imwrite(img_file + "/" + '%d.jpg'%i, frame)

不要忘了,引入头文件 cv2 和 os