浅谈tensorflow中Dataset图片的批量读取及维度的操作详解


Posted in Python onJanuary 20, 2020

三维的读取图片(w, h, c):

import tensorflow as tf
 
import glob
import os
 
 
def _parse_function(filename):
  # print(filename)
  image_string = tf.read_file(filename)
  image_decoded = tf.image.decode_image(image_string) # (375, 500, 3)
 
  image_resized = tf.image.resize_image_with_crop_or_pad(image_decoded, 200, 200)
  return image_resized
 
 
 
 
with tf.Session() as sess:
 
  print( sess.run( img ).shape  )

读取批量图片的读取图片(b, w, h, c):

import tensorflow as tf
 
import glob
import os
 
'''
  Dataset 批量读取图片
'''
 
def _parse_function(filename):
  # print(filename)
  image_string = tf.read_file(filename)
  image_decoded = tf.image.decode_image(image_string) # (375, 500, 3)
 
  image_decoded = tf.expand_dims(image_decoded, axis=0)
 
  image_resized = tf.image.resize_image_with_crop_or_pad(image_decoded, 200, 200)
  return image_resized
 
 
 
img = _parse_function('../pascal/VOCdevkit/VOC2012/JPEGImages/2007_000068.jpg')
 
# image_resized = tf.image.resize_image_with_crop_or_pad( tf.truncated_normal((1,220,300,3))*10, 200, 200) 这种四维 形式是可以的
 
with tf.Session() as sess:
 
  print( sess.run( img ).shape  ) #直接初始化就可以 ,转换成四维报错误,不知道为什么,若谁想明白,请留言 报错误
  #InvalidArgumentError (see above for traceback): Input shape axis 0 must equal 4, got shape [5]

Databae的操作:

import tensorflow as tf
 
import glob
import os
 
'''
  Dataset 批量读取图片:
  
    原因:
      1. 先定义图片名的list,存放在Dataset中 from_tensor_slices()
      2. 映射函数, 在函数中,对list中的图片进行读取,和resize,细节
        tf.read_file(filename) 返回的是三维的,因为这个每次取出一张图片,放进队列中的,不需要转化为四维
        然后对图片进行resize, 然后每个batch进行访问这个函数 ,所以get_next() 返回的是 [batch, w, h, c ]
      3. 进行shuffle , batch repeat的设置
      
      4. iterator = dataset.make_one_shot_iterator() 设置迭代器
      
      5. iterator.get_next() 获取每个batch的图片
'''
 
def _parse_function(filename):
  # print(filename)
  image_string = tf.read_file(filename)
  image_decoded = tf.image.decode_image(image_string) #(375, 500, 3)
  '''
    Tensor` with type `uint8` with shape `[height, width, num_channels]` for
     BMP, JPEG, and PNG images and shape `[num_frames, height, width, 3]` for
     GIF images.
  '''
 
  # image_resized = tf.image.resize_images(label, [200, 200])
  ''' images 三维,四维的都可以
     images: 4-D Tensor of shape `[batch, height, width, channels]` or
      3-D Tensor of shape `[height, width, channels]`.
    size: A 1-D int32 Tensor of 2 elements: `new_height, new_width`. The
       new size for the images.
  
  '''
  image_resized = tf.image.resize_image_with_crop_or_pad(image_decoded, 200, 200)
 
  # return tf.squeeze(mage_resized,axis=0)
  return image_resized
 
filenames = glob.glob( os.path.join('../pascal/VOCdevkit/VOC2012/JPEGImages', "*." + 'jpg') )
 
 
dataset = tf.data.Dataset.from_tensor_slices((filenames))
 
dataset = dataset.map(_parse_function)
 
dataset = dataset.shuffle(10).batch(2).repeat(10)
iterator = dataset.make_one_shot_iterator()
 
img = iterator.get_next()
 
with tf.Session() as sess:
  # print( sess.run(img).shape ) #(4, 200, 200, 3)
  for _ in range (10):
    print( sess.run(img).shape )

以上这篇浅谈tensorflow中Dataset图片的批量读取及维度的操作详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python类的用法实例浅析
May 27 Python
python实现基本进制转换的方法
Jul 11 Python
python win32 简单操作方法
May 25 Python
对numpy中轴与维度的理解
Apr 18 Python
数据清洗--DataFrame中的空值处理方法
Jul 03 Python
Python实现的括号匹配判断功能示例
Aug 25 Python
Python中的枚举类型示例介绍
Jan 09 Python
python实现人机猜拳小游戏
Feb 03 Python
tf.concat中axis的含义与使用详解
Feb 07 Python
Python通过Tesseract库实现文字识别
Mar 05 Python
Python 通过监听端口实现唯一脚本运行方式
May 05 Python
python绘制汉诺塔
Mar 01 Python
使用tensorflow DataSet实现高效加载变长文本输入
Jan 20 #Python
python机器学习库xgboost的使用
Jan 20 #Python
python 爬取马蜂窝景点翻页文字评论的实现
Jan 20 #Python
tensorflow-gpu安装的常见问题及解决方案
Jan 20 #Python
win10安装tensorflow-gpu1.8.0详细完整步骤
Jan 20 #Python
tensorflow -gpu安装方法(不用自己装cuda,cdnn)
Jan 20 #Python
基于Python获取照片的GPS位置信息
Jan 20 #Python
You might like
PHP入门速成教程
2007/03/19 PHP
php的chr和ord函数实现字符加减乘除运算实现代码
2011/12/05 PHP
php自定义函数截取汉字长度
2014/05/15 PHP
php准确获取文件MIME类型的方法
2015/06/17 PHP
laravel框架数据库配置及操作数据库示例
2019/10/10 PHP
showModelessDialog()使用详解
2006/09/21 Javascript
javascript 用原型继承来实现对象系统
2010/03/22 Javascript
javascript获取下拉列表框当中的文本值示例代码
2013/07/31 Javascript
jquery获取一组checkbox的值(实例代码)
2013/11/04 Javascript
鼠标滚轮改变图片大小的示例代码
2013/11/20 Javascript
js 数值转换为3位逗号分隔的示例代码
2014/02/19 Javascript
jquery的父子兄弟节点查找示例代码
2014/03/03 Javascript
express的中间件bodyParser详解
2014/12/04 Javascript
jQuery使用append在html元素后同时添加多项内容的方法
2015/03/26 Javascript
浅谈js键盘事件全面控制
2016/12/01 Javascript
jquery自定义插件结合baiduTemplate.js实现异步刷新(附源码)
2016/12/22 Javascript
详解使用vue-cli脚手架初始化Vue项目下的项目结构
2018/03/08 Javascript
关于vuejs中v-if和v-show的区别及v-show不起作用问题
2018/03/26 Javascript
JS闭包经典实例详解
2018/12/20 Javascript
elementUI 动态生成几行几列的方法示例
2019/07/11 Javascript
Vue 动态组件components和v-once指令的实现
2019/08/30 Javascript
Element-ui el-tree新增和删除节点后如何刷新tree的实例
2020/08/31 Javascript
[01:38]【DOTA2亚洲邀请赛】Sumail——梦开始的地方
2017/03/03 DOTA
浅谈python中截取字符函数strip,lstrip,rstrip
2015/07/17 Python
python实现给微信公众号发送消息的方法
2017/06/30 Python
python3读取excel文件只提取某些行某些列的值方法
2018/07/10 Python
python 数据生成excel导出(xlwt,wlsxwrite)代码实例
2019/08/23 Python
python 19个值得学习的编程技巧
2020/08/15 Python
html5 canvas实现给图片添加平铺水印
2019/08/20 HTML / CSS
美国伴娘礼服商店:Evening Collective
2019/10/07 全球购物
市场营销专业毕业生自荐信
2013/11/02 职场文书
工程管理造价应届生求职信
2013/11/13 职场文书
酒店个人求职信范文
2014/01/25 职场文书
应届大学生自荐书
2014/06/17 职场文书
秋收起义观后感
2015/06/11 职场文书
Zabbix6通过ODBC方式监控Oracle 19C的详细过程
2022/09/23 Servers