-
大小: 0.01M文件类型: .rar金币: 1下载: 0 次发布日期: 2021-03-02
- 语言: Python
- 标签: tensorflow keras CNN
资源简介
CNN_python程序集.rar
代码片段和文件信息
# -*- coding: utf-8 -*-
###本程序用于将.jpg格式的图片批量转化为.npg灰度图像
import os
from PIL import Image
infile = ‘./flower/‘
outfile = ‘./flower_gray200/‘
folddirs = os.listdir(infile) #用于返回指定的文件夹包含的文件或文件夹的名字的列表。
#print(folddirs)
for foldername in folddirs:
filepath = infile+ foldername
filedirs = os.listdir(filepath)
img_num = int(len(filedirs))
filecount = 0
print(img_num)
for filename in filedirs:
img_path = filepath + ‘/‘ + filename
img = Image.open(img_path).convert(‘L‘)
out = img.resize((200200)Image.ANTIALIAS)
filecount = filecount + 1
# print(filecount)
newfilename = outfile + foldername + ‘/‘ + foldername + str(‘_‘)+str(filecount) + ‘.png‘
out.save(newfilename)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 868 2020-03-03 20:07 CNN_python程序集\batchIM_color_to_gray.py
文件 830 2020-03-09 10:50 CNN_python程序集\batch_resize_image.py
文件 1257 2020-03-09 10:47 CNN_python程序集\Creat_tfrecords_Datasets.py
文件 2380 2020-03-06 16:16 CNN_python程序集\Datagen_keras_cnn.py
文件 5209 2020-03-09 10:42 CNN_python程序集\flower_keras_CNN.py
文件 4824 2020-03-09 10:43 CNN_python程序集\flower_keras_Fconnect_NN.py
文件 1328 2020-03-09 10:37 CNN_python程序集\image_gen_aug.py
文件 2594 2020-03-10 16:42 CNN_python程序集\minst_tensorflow_CNN.py
文件 1154 2020-03-03 19:27 CNN_python程序集\pridict_test.py
文件 1799 2020-03-04 19:09 CNN_python程序集\pridict_test_mul.py
文件 2097 2020-03-09 10:40 CNN_python程序集\read_data_from_TFRecords.py
目录 0 2020-03-13 12:21 CNN_python程序集
----------- --------- ---------- ----- ----
24340 12
相关资源
- 基于机器学习框架tensorflow的图像分类
- 基于MTCNN实现制作脸部VOC格式数据集
- 机器学习实战:基于 Scikit-Learn 和 T
- 《白话深度学习与TensorFlow》.pdf
- Tensorflow+实战Google深度学习框架
- mnist_CNN 深度学习小
- python MNIST分类 tensorflow
- tensorflow下用LSTM网络进行时间序列预测
- 深度学习之一:卷积神经网络(CNN)
- 深度学习之二:用Tensorflow实现卷积神
- tensorflow版本的YOLO v3,在Windows系统下
- Python实现的TensorFlow入门案例
- 《TensorFlow技术解析与实战》高清中文
- MaskR-CNNpython
- python实现TensorFlow2 股票股价预测(源
- CNN实现手写数字识别
- 计算 语义分割结果 MIOU,miou.py操作简
- tensorflow做cifar-10识别
- mnist_mlp.py
- TensorFlow手写数字识别代码
- python实现的CNN代码
- 基于kNN方法的MNIST手写数字识别Tenso
- cifar10_input.py
- Python-PythonTensorflowKeras实现参数tSNE算法
- Python-图像分割Keras在Keras中实现Segne
- 车牌识别Python程序,使用五层的CNN网
- TensorFlow实现CNN
- fasterRCNN python36
- CNN卷积神经网络-识别阿喵阿汪源代码
- Python TensorFlow手写数字识别
评论
共有 条评论