tf读取图片,matplotlib可视化
程序员文章站
2023-11-19 16:28:58
代码: 显示: ......
代码:
""" 使用tf读取图片 """ import tensorflow as tf import matplotlib.pyplot as plt image_raw = tf.gfile.fastgfile(r'c:\users\administrator\desktop\meatwice\meatwice\01newcognition\reinforcement_learning\new_test_tensorflow\picture_set\b023260d27ab8087b5b7d73b837094d.png', \ 'rb').read() img = tf.image.decode_jpeg(image_raw) with tf.session() as sess: img1 = img.eval() # print(img1) print(img1.shape) plt.figure(1) plt.imshow(img1) plt.show()
显示:
上一篇: Django-2.2.1学习感悟
下一篇: Python_类的继承与方法重写
推荐阅读
-
tf读取图片,matplotlib可视化
-
使用可视化库matplotlib绘图时,plt.show()过后只出现Figure size 640x480 with 1 Axes而没有生成图片
-
matplotlib/PIL/cv2/skimage读取和显示图片的方式
-
matplotlib 学习二(读取图片)
-
OpenCV读取图片matplotlib展示图片
-
matplotlib嵌入tkinter并绘制动态图片,数据来源读取西门子plc
-
cv2读取的图片用matplotlib显示
-
Matplotlib——读取图片并展示相关用法
-
使用matplotlib与opencv读取和显示图片
-
利用matplotlib.pyplot读取、显示和保存图片