tf读取图片,matplotlib可视化

Posted zrmw

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tf读取图片,matplotlib可视化相关的知识,希望对你有一定的参考价值。

代码:

"""
使用tf读取图片
"""


import tensorflow as tf
import matplotlib.pyplot as plt


image_raw = tf.gfile.FastGFile(rC:\\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()

 

显示:

技术图片

 

以上是关于tf读取图片,matplotlib可视化的主要内容,如果未能解决你的问题,请参考以下文章

1.5神经网络可视化显示(matplotlib)

TensorFlow加载图片的方法

Mac下面 matplotlib 中文无法显示解决

OpenCV从入门到入坟

matplotlib.pyplot可视化训练结果

解决seaborn画图无法显示中文的问题