tensorflow实现对图片的读取的示例代码
作者:UESTC_C2_403 时间:2023-07-20 06:07:30
tensorflow里面给出了一个函数用来读取图像,不过得到的结果是最原始的图像,是咩有经过解码的图像,这个函数为tf.gfile.FastGFile(‘path', ‘r').read()。如果要显示读入的图像,那就需要经过解码过程,tensorflow里面提供解码的函数有两个,tf.image.decode_jepg和tf.image.decode_png分别用于解码jpg格式和png格式的图像进行解码,得到图像的像素值,这个像素值可以用于显示图像。如果乜有解码,读取的图像是一个字符串,没法显示。
例如:
import matplotlib.pyplot as plt;
import tensorflow as tf;
image_raw_data_jpg = tf.gfile.FastGFile('11.jpg', 'r').read()
image_raw_data_png = tf.gfile.FastGFile('1.png', 'r').read()
with tf.Session() as sess:
img_data_jpg = tf.image.decode_jpeg(image_raw_data_jpg) #图像解码
img_data_jpg = tf.image.convert_image_dtype(img_data_jpg, dtype=tf.uint8) #改变图像数据的类型
img_data_png = tf.image.decode_png(image_raw_data_png)
img_data_png = tf.image.convert_image_dtype(img_data_png, dtype=tf.uint8)
plt.figure(1) #图像显示
plt.imshow(img_data_jpg.eval())
plt.figure(2)
plt.imshow(img_data_png.eval())
plt.show()
结果:
来源:http://blog.csdn.net/uestc_c2_403/article/details/72689908
标签:tensorflow,图片,读取
0
投稿
猜你喜欢
为JavaScript程序添加客户端不可见的注释
2008-05-31 08:02:00
asp如何用OdbcRegTool组件来创建一个数据源?
2010-06-12 12:55:00
js substr支持中文截取函数代码(中文是双字节)
2024-04-10 10:44:58
深入理解Python中的super()方法
2022-11-07 05:10:45
Python GUI Tkinter简单实现个性签名设计
2022-05-22 16:04:08
Python抓取今日头条街拍图片数据
2021-11-03 12:30:57
Go语言入门exec的基本使用示例
2024-04-25 13:16:33
IDEA使用properties配置文件进行mysql数据库连接的教程图解
2024-01-22 13:45:08
form表单的submit方法和submit事件
2008-10-15 11:22:00
mysql中取字符串中的数字的语句
2024-01-15 02:16:15
PyCharm 2020.1版安装破解注册码永久激活(激活到2089年)
2022-06-20 13:08:13
Python中的logging模块实现日志打印
2023-07-29 10:51:00
语义化提高页面质量
2007-10-07 11:56:00
Python记录详细调用堆栈日志的方法
2023-11-16 17:20:57
Python使用LDAP做用户认证的方法
2022-03-28 15:32:43
Spring + mybatis + mysql使用事物的几种方法总结
2024-01-22 02:01:25
如何恢复/修复MS SQL数据库的MDF文件
2007-10-30 13:52:00
python之json文件转xml文件案例讲解
2021-11-18 04:54:23
Python高阶函数、常用内置函数用法实例分析
2023-01-24 17:36:58
TensorFlow人工智能学习张量及高阶操作示例详解
2022-04-15 15:37:52