TensorFlow图像处理函数
1. 读取图片import matplotlib.pyplot as pltimport tensorflow as tfimport numpy as npimage_raw_data = tf.gfile.FastGFile('./datasets/cat.png','rb').read()with tf.Session() as sess: image_data = tf...