|
楼主 |
发表于 2020-5-27 19:31:08
|
显示全部楼层
方法四:TensorFlow方法:
with tf.Session() as sess:
img = tf.read_file(imgfile) #读取图片,
img_data = tf.image.decode_jpeg(img, channels=3) #解码
#img_data = sess.run(tf.image.decode_jpeg(img, channels=3))
img_data = sess.run(tf.image.rgb_to_grayscale(img_data)) #灰度化
print('大小:{}'.format(img_data.shape))
print("类型:%s" % type(img_data))
|
|