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


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


水平翻轉圖像(從左到右)。

用法

tf.image.flip_left_right(
    image
)

參數

  • image 形狀為 [batch, height, width, channels] 的 4-D 張量或形狀為 [height, width, channels] 的 3-D 張量。

返回

  • image 類型和形狀相同的張量。

拋出

  • ValueError 如果不支持image 的形狀。

輸出沿寬度維度翻轉的image 的內容。

另見tf.reverse

使用示例:

x = [[[1.0, 2.0, 3.0],
      [4.0, 5.0, 6.0]],
    [[7.0, 8.0, 9.0],
      [10.0, 11.0, 12.0]]]
tf.image.flip_left_right(x)
<tf.Tensor:shape=(2, 2, 3), dtype=float32, numpy=
array([[[ 4.,  5.,  6.],
        [ 1.,  2.,  3.]],
       [[10., 11., 12.],
        [ 7.,  8.,  9.]]], dtype=float32)>

相關用法


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