更新 :请参阅下面的@astromme答案。Tensorflow现在支持本地旋转图像。
在Tensorflow中没有本机方法的情况下可以执行的 *** 作是这样的:
from PIL import Imagesess = tf.InteractiveSession()# Pass image tensor object to a PIL imageimage = Image.fromarray(image.eval())# Use PIL or other library of the sort to rotaterotated = Image.Image.rotate(image, degrees)# Convert rotated image back to tensorrotated_tensor = tf.convert_to_tensor(np.array(rotated))
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)