使用tensorflow读取小狗的图片

import tensorflow as tf
import os


def read_dog(file_list):
    # 构造文件名队列
    file_queue = tf.train.string_input_producer(file_list)
    # 构造图片阅读器
    reader = tf.WholeFileReader()
    key,value = reader.read(file_queue)
    print("key:\n", key)
    print("value:\n", value)

  # 解码
   image_decoded = tf.image.decode_jpeg(value)
   print("image_decoded:\n", image_decoded)

   # 基本的数据处理
   # 缩小图片大小
   image_resized = tf.image.resize_images(image_decoded, (200, 200))
   print("image_resized:\n", image_resized)
   image_resized.set_shape([200,200,3])

   print("image_resized:\n:", image_resized)

   # 批处理
   image_batch = tf.train.batch([image_resized], batch_size=10, num_threads=1, capacity=10)
    return image_batch

if __name__ == '__main__':
    file_name = os.listdir("C:\\Users\\Lit_leaf\\Desktop\\Machine learning\\dog")
    # print(file_name)
    file_list = [os.path.join("C:\\Users\\Lit_leaf\\Desktop\\Machine learning\\dog", file) for file in file_name]
    # print(file_list)
    image = read_dog(file_list)
    with tf.Session() as sess:
        coord = tf.train.Coordinator()
        # 创建线程
        threads = tf.train.start_queue_runners(sess=sess, coord=coord)
        image_shape = sess.run(image)
        print('图片值:\n', image_shape.shape)
        # 请求停止
        coord.request_stop()
        # 资源回收
        coord.join(threads)
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值