當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python tf.image.rot90用法及代碼示例


將圖像逆時針旋轉 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]]

相關用法


注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.image.rot90。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。