初探TensorFLow从文件读取图片的四种方式


Posted in Python onFebruary 06, 2018

本文记录一下TensorFLow的几种图片读取方法,官方文档有较为全面的介绍。

1.使用gfile读图片,decode输出是Tensor,eval后是ndarray

import matplotlib.pyplot as plt
import tensorflow as tf
import numpy as np

print(tf.__version__)

image_raw = tf.gfile.FastGFile('test/a.jpg','rb').read()  #bytes
img = tf.image.decode_jpeg(image_raw) #Tensor
#img2 = tf.image.convert_image_dtype(img, dtype = tf.uint8)

with tf.Session() as sess:
  print(type(image_raw)) # bytes
  print(type(img)) # Tensor
  #print(type(img2))

  print(type(img.eval())) # ndarray !!!
  print(img.eval().shape)
  print(img.eval().dtype)

#  print(type(img2.eval()))
#  print(img2.eval().shape)
#  print(img2.eval().dtype)
  plt.figure(1)
  plt.imshow(img.eval())
  plt.show()

输出为:

1.3.0
<class 'bytes'>
<class 'tensorflow.python.framework.ops.Tensor'>
<class 'numpy.ndarray'>
(666, 1000, 3)
uint8
图片显示(略)

2.使用WholeFileReader输入queue,decode输出是Tensor,eval后是ndarray

import tensorflow as tf
import os
import matplotlib.pyplot as plt
def file_name(file_dir):  #来自https://3water.com/article/134543.htm
  for root, dirs, files in os.walk(file_dir): #模块os中的walk()函数遍历文件夹下所有的文件
    print(root) #当前目录路径 
    print(dirs) #当前路径下所有子目录 
    print(files) #当前路径下所有非目录子文件 

def file_name2(file_dir):  #特定类型的文件
  L=[]  
  for root, dirs, files in os.walk(file_dir): 
    for file in files: 
      if os.path.splitext(file)[1] == '.jpg':  
        L.append(os.path.join(root, file)) 
  return L 

path = file_name2('test')


#以下参考https://3water.com/article/134547.htm (十图详解TensorFlow数据读取机制)
#path2 = tf.train.match_filenames_once(path)
file_queue = tf.train.string_input_producer(path, shuffle=True, num_epochs=2) #创建输入队列 
image_reader = tf.WholeFileReader() 
key, image = image_reader.read(file_queue) 
image = tf.image.decode_jpeg(image) 

with tf.Session() as sess: 
#  coord = tf.train.Coordinator() #协同启动的线程 
#  threads = tf.train.start_queue_runners(sess=sess, coord=coord) #启动线程运行队列 
#  coord.request_stop() #停止所有的线程 
#  coord.join(threads) 

  tf.local_variables_initializer().run()
  threads = tf.train.start_queue_runners(sess=sess)

  #print (type(image)) 
  #print (type(image.eval())) 
  #print(image.eval().shape)
  for _ in path+path:
    plt.figure
    plt.imshow(image.eval())
    plt.show()

3.使用read_file,decode输出是Tensor,eval后是ndarray

import matplotlib.pyplot as plt
import tensorflow as tf
import numpy as np

print(tf.__version__)

image_value = tf.read_file('test/a.jpg')
img = tf.image.decode_jpeg(image_value, channels=3)

with tf.Session() as sess:
  print(type(image_value)) # bytes
  print(type(img)) # Tensor
  #print(type(img2))

  print(type(img.eval())) # ndarray !!!
  print(img.eval().shape)
  print(img.eval().dtype)

#  print(type(img2.eval()))
#  print(img2.eval().shape)
#  print(img2.eval().dtype)
  plt.figure(1)
  plt.imshow(img.eval())
  plt.show()

输出是:

1.3.0
<class 'tensorflow.python.framework.ops.Tensor'>
<class 'tensorflow.python.framework.ops.Tensor'>
<class 'numpy.ndarray'>
(666, 1000, 3)
uint8
显示图片(略)

4.TFRecords:

有空再看。

如果图片是根据分类放在不同的文件夹下,那么可以直接使用如下代码:
https://3water.com/article/134532.htm
https://3water.com/article/134539.htm

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python 抓取动态网页内容方案详解
Dec 25 Python
ActiveMQ:使用Python访问ActiveMQ的方法
Jan 30 Python
Django打印出在数据库中执行的语句问题
Jul 25 Python
Python代码实现http/https代理服务器的脚本
Aug 12 Python
Python 类,property属性(简化属性的操作),@property,property()用法示例
Oct 12 Python
python hash每次调用结果不同的原因
Nov 21 Python
pytorch 模型的train模式与eval模式实例
Feb 20 Python
Python中常见的数制转换有哪些
May 27 Python
解决keras使用cov1D函数的输入问题
Jun 29 Python
Python3爬虫中pyspider的安装步骤
Jul 29 Python
python使用re模块爬取豆瓣Top250电影
Oct 20 Python
python not运算符的实例用法
Jun 30 Python
用十张图详解TensorFlow数据读取机制(附代码)
Feb 06 #Python
Python实现matplotlib显示中文的方法详解
Feb 06 #Python
Python实现自动上京东抢手机
Feb 06 #Python
Python获取指定文件夹下的文件名的方法
Feb 06 #Python
TensorFlow如何实现反向传播
Feb 06 #Python
tensorflow TFRecords文件的生成和读取的方法
Feb 06 #Python
TensorFlow实现创建分类器
Feb 06 #Python
You might like
PHP字符编码问题之GB2312 VS UTF-8解决方法
2011/06/23 PHP
php的大小写敏感问题整理
2011/12/29 PHP
Ubuntu中启用php的mail()函数并解决发送邮件速度慢问题
2015/03/27 PHP
php each 返回数组中当前的键值对并将数组指针向前移动一步实例
2016/11/22 PHP
thinkPHP5.0框架URL访问方法详解
2017/03/18 PHP
浅谈php调用python文件
2019/03/29 PHP
获取页面高度,窗口高度,滚动条高度等参数值getPageSize,getPageScroll
2006/09/22 Javascript
轻松实现javascript图片轮播特效
2016/01/13 Javascript
javascript实现九宫格相加数值相等
2020/05/28 Javascript
教你如何在Node.js中使用jQuery
2016/08/28 Javascript
JavaScript判断浏览器及其版本信息
2017/01/20 Javascript
vue-hook-form使用详解
2017/04/07 Javascript
vue.js选中动态绑定的radio的指定项
2017/06/02 Javascript
JavaScript面向对象精要(上部)
2017/09/12 Javascript
jquery 输入框查找关键字并提亮颜色的实例代码
2018/01/23 jQuery
vue中多路由表头吸顶实现的几种布局方式
2019/04/12 Javascript
基于PHP pthreads实现多线程代码实例
2020/06/24 Javascript
python计算圆周长、面积、球体体积并画出圆
2014/04/08 Python
windows安装TensorFlow和Keras遇到的问题及其解决方法
2019/07/10 Python
超实用的 30 段 Python 案例
2019/10/10 Python
python3实现在二叉树中找出和为某一值的所有路径(推荐)
2019/12/26 Python
python通过opencv实现图片裁剪原理解析
2020/01/19 Python
Python 如何展开嵌套的序列
2020/08/01 Python
基于Python爬取搜狐证券股票过程解析
2020/11/18 Python
使用javascript和HTML5 Canvas画的四渐变色播放按钮效果
2014/04/10 HTML / CSS
Zadig&Voltaire官网:法国时装品牌
2018/01/05 全球购物
最好的商品表达自己:Cafepress
2019/09/04 全球购物
STRATHBERRY苏贝瑞包包官网:西班牙高级工匠手工打造
2020/11/10 全球购物
党员公开承诺事项
2014/03/25 职场文书
律师授权委托书范本
2014/10/07 职场文书
市场部岗位职责范本
2015/04/15 职场文书
初中英语教师个人工作总结2015
2015/07/21 职场文书
新员工入职感想
2015/08/07 职场文书
pytorch实现ResNet结构的实例代码
2021/05/17 Python
Python数据分析之pandas读取数据
2021/06/02 Python
MySQL系列之十一 日志记录
2021/07/02 MySQL