【Python】转换图片分辨率resize,不改变宽高比,不损失图像信息,OpenCV,计算机视觉
importosimportcv2fromtqdmimporttqdm#设定默认图像高度和宽度height=640width=480#定义调整图像大小并保存的函数defresize_and_save(srcImgDir,dstImgDir,height=height,width=width):#如果目标图像文件夹不存在,则创建它ifnotos.path.exists(dstImgDir):os.m