在使用tf.image進行圖像加強時,咱們先介紹該模塊中的一個類。python
地址:https://tensorflow.google.cn/api_docs/python/tf/image/ResizeMethod#class_resizemethodapi
該類主要是用於選擇調整圖像大小的,其類成員有:google
AREA = 'area'
spa
BICUBIC = 'bicubic'
rest
BILINEAR = 'bilinear'
code
GAUSSIAN = 'gaussian'
blog
LANCZOS3 = 'lanczos3'
get
LANCZOS5 = 'lanczos5'
it
MITCHELLCUBIC = 'mitchellcubic'
class
NEAREST_NEIGHBOR = 'nearest'
地址:https://tensorflow.google.cn/api_docs/python/tf/image/rot90
tf.image.rot90( image, k=1, name=None )
待續。。。