当前位置:网站首页>利用opencv读取图片,重命名。

利用opencv读取图片,重命名。

2022-08-11 05:33:00 我是无名的我

# -*- coding: utf-8 -*-
""" Spyder Editor hgh """

import os
import cv2

path_img = r'/images'

dirs = os.listdir(path_img)
os.chdir(path_img)

try:
    os.mkdir('rename')
except:
    pass

count = 0
for img in dirs:
    img = cv2.imread(img, 1)
    Str = "%06d"% count
    path = os.path.join('rename', Str + '.jpg')
    cv2.imwrite(path, img)
    count +=1

原网站

版权声明
本文为[我是无名的我]所创,转载请带上原文链接,感谢
https://blog.csdn.net/qq_39821554/article/details/103818282