tensorflow:如何旋转图像以进行数据增强?

tensorflow:如何旋转图像以进行数据增强?,第1张

tensorflow:如何旋转图像以进行数据增强?

更新 :请参阅下面的@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))


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5654675.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存