首页 热点资讯 义务教育 高等教育 出国留学 考研考公

Python 读取文件夹将里面的图片处理成想要的大小并保存在个指定位置

发布网友 发布时间:2022-04-27 02:44

我来回答

1个回答

热心网友 时间:2022-04-18 04:45

# -*- coding: utf-8 -*-
import cv2
import os
import numpy
import cutHumanFace

def saveCutFace(filePath, pathSave = 'cutFace', normalizeWidth = 300, normalizeHeight = 300):
    """
    :param filePath: string, 文件夹路径
    """
    
    if not os.path.exists(savePath):
        os.makedirs(savePath);                   #保存的文件夹
        
    files = os.listdir(filePath);                #列出目录下的所有文件
    
    normalizeWidth = 100                         #以100×100为大小
    normalizeHeight = 100
    for file in files:
        normalizeFace = cv2.resize(cutFace, (normalizeWidth,normalizeHeight), interpolation=cv2.INTER_AREA);
        cv2.imwrite(savePath, normalizeFace);

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com