python读取图片的方式,以及将图片以三维数组的形式输出方法

近期做个小项目需要用到python读取图片,自己整理了一下两种读取图片的方式,其中一种用到了TensorFlow,(TensorFlow是基于python3 的)。代码及运行结果如下所示:

import numpy as np

from PIL import Image

import matplotlib.pyplot as plt

image = Image.open(r'C:\Users\Administrator\Desktop\data\train\forest_001.jpg') #读取图片文件

plt.imshow(image)

plt.show() #将图片输出到屏幕

image_arr = np.array(image) #将图片以数组的形式读入变量

print (image_arr)

另一种读取图片的方式

# coding=utf-8

import tensorflow as tf

import numpy as np

import matplotlib.pyplot as plt

image_contents = tf.read_file(r'C:\Users\Administrator\Desktop\data\train\forest_001.jpg') #读取文件

image = tf.image.decode_jpeg(image_contents, channels=3) #解码jpeg

with tf.Session() as sess:

sess.run(tf.global_variables_initializer())

img=sess.run((image)) #img为三维数组

print (img.shape) #输出数组形状

print (img) #打印数组

plt.imshow(img) #显示数组

plt.show()

结果为:

打印图片

输出的数组部分截图

以上这篇python读取图片的方式,以及将图片以三维数组的形式输出方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。

以上是 python读取图片的方式,以及将图片以三维数组的形式输出方法 的全部内容, 来源链接: utcz.com/z/318531.html

回到顶部