Tensorflow机器学习项目实战--1.5.2读取图像数据

本文通过使用TensorFlow读取并翻转图片,介绍了如何利用文件名队列进行图片的加载和处理,包括上下翻转与左右翻转,并将处理后的图片保存到文件。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

修改书上的代码,添加少量注释。

环境:python 3

#导入tensorflow
import tensorflow as tf

#新建一个Session
sess = tf.Session()
#tf.train.string_input_producer产生一个文件名队列
#shuffle属性在读取多个文件事需要注意
filename_queue = tf.train.string_input_producer(tf.train.match_filenames_once("blue_jay.jpg"),shuffle=False)
reader = tf.WholeFileReader()
key,value = reader.read(filename_queue)
image = tf.image.decode_jpeg(value)
#very important
#书上的初始化方式在0.12版本以后就换成global_variables_initializer()
sess.run(tf.global_variables_initializer())
sess.run(tf.local_variables_initializer())

coord = tf.train.Coordinator()
threads = tf.train.start_queue_runners(sess,coord=coord)
#第一张图片
flipImageUpDown = tf.image.encode_jpeg(tf.image.flip_up_down(image))
file = open("flippedUpDown.jpg","wb+")
file.write(flipImageUpDown.eval(session=sess))
file.close()
#第二张图片
flipImageLeftRight = tf.image.encode_jpeg(tf.image.flip_left_right(image))
file = open("flippedLeftRight.jpg","wb+")
file.write(flipImageLeftRight.eval(session=sess))
file.close()

example = sess.run(flipImageLeftRight)
print(example)

coord.request_stop()
coord.join(threads)
sess.close()

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值