將圖像逆時針旋轉 90 度。
用法
tf.image.rot90(
image, k=1, name=None
)
參數
-
image
形狀為[batch, height, width, channels]
的 4-D 張量或形狀為[height, width, channels]
的 3-D 張量。 -
k
一個標量整數張量。圖像旋轉 90 度的次數。 -
name
此操作的名稱(可選)。
返回
-
與
image
具有相同類型和形狀的旋轉張量。
拋出
-
ValueError
如果不支持image
的形狀。
例如:
a=tf.constant([[[1],[2]],
[[3],[4]]])
# rotating `a` counter clockwise by 90 degrees
a_rot=tf.image.rot90(a)
print(a_rot[...,0].numpy())
[[2 4]
[1 3]]
# rotating `a` counter clockwise by 270 degrees
a_rot=tf.image.rot90(a, k=3)
print(a_rot[...,0].numpy())
[[3 1]
[4 2]]
相關用法
- Python tf.image.random_brightness用法及代碼示例
- Python tf.image.random_contrast用法及代碼示例
- Python tf.image.random_hue用法及代碼示例
- Python tf.image.random_saturation用法及代碼示例
- Python tf.image.rgb_to_yiq用法及代碼示例
- Python tf.image.resize_with_crop_or_pad用法及代碼示例
- Python tf.image.random_jpeg_quality用法及代碼示例
- Python tf.image.random_flip_up_down用法及代碼示例
- Python tf.image.random_crop用法及代碼示例
- Python tf.image.resize用法及代碼示例
- Python tf.image.random_flip_left_right用法及代碼示例
- Python tf.image.rgb_to_hsv用法及代碼示例
- Python tf.image.rgb_to_grayscale用法及代碼示例
- Python tf.image.pad_to_bounding_box用法及代碼示例
- Python tf.image.adjust_hue用法及代碼示例
- Python tf.image.flip_left_right用法及代碼示例
- Python tf.image.convert_image_dtype用法及代碼示例
- Python tf.image.stateless_random_flip_up_down用法及代碼示例
- Python tf.image.extract_glimpse用法及代碼示例
- Python tf.image.flip_up_down用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.image.rot90。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。