1 Star 1 Fork 0

令1/DCGAN无监督数据生成

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
test.py 537 Bytes
一键复制 编辑 原始数据 按行查看 历史
baozaoderenlei 提交于 2023-02-13 10:44 . first commit
import os
import cv2
from PIL import Image
def produceImage(file_in, width, height, file_out):
image = Image.open(file_in)
resized_image = image.resize((width, height), Image.ANTIALIAS)
resized_image.save(file_out)
file_in = {}
file_out={}
txt_folder = './test'
txt_file = os.listdir(txt_folder)
for i in range(len(txt_file)):
file_in[i]='test/'+txt_file[i]
file_out[i]= 'test1/'+txt_file[i]
for i in range(len(file_out)):
img = cv2.imread(file_in[i])
produceImage(file_in[i],int(256), int(256),file_out[i])
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhou-xuanling/dcgan-unsupervised-data.git
[email protected]:zhou-xuanling/dcgan-unsupervised-data.git
zhou-xuanling
dcgan-unsupervised-data
DCGAN无监督数据生成
master

搜索帮助