1 Star 3 Fork 1

ANDY/Unet

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
saveImage.py 470 Bytes
一键复制 编辑 原始数据 按行查看 历史
import cv2
import glob
import os
if __name__=="__main__":
ImageList=glob.glob("/home/andy/project/python/Pytorch-UNet/data/image/*.jpg")
for item in ImageList:
image=cv2.imread(item)
filename=os.path.basename(item)
image=cv2.resize(image,(224,224))
# image=cv2.imread("/home/andy/project/python/Pytorch-UNet/data/imgs/"+filename+".jpg")
cv2.imwrite("/home/andy/project/python/Pytorch-UNet/data/image2/"+filename,image)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/andyFengce/unet.git
git@gitee.com:andyFengce/unet.git
andyFengce
unet
Unet
master

搜索帮助