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


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


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

用法

tf.image.random_flip_left_right(
    image, seed=None
)

參數

  • image 形狀為 [batch, height, width, channels] 的 4-D 張量或形狀為 [height, width, channels] 的 3-D 張量。
  • seed 一個 Python 整數。用於創建隨機種子。有關行為,請參見tf.compat.v1.set_random_seed

返回

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

拋出

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

以二分之一的機會,輸出 image 沿第二維翻轉的內容,即 width 。否則輸出圖像as-is。當傳遞一批圖像時,每張圖像將獨立於其他圖像隨機翻轉。

示例用法:

image = np.array([[[1], [2]], [[3], [4]]])
tf.image.random_flip_left_right(image, 5).numpy().tolist()
[[[2], [1]], [[4], [3]]]

隨機翻轉多張圖像。

images = np.array(
[
    [[[1], [2]], [[3], [4]]],
    [[[5], [6]], [[7], [8]]]
])
tf.image.random_flip_left_right(images, 6).numpy().tolist()
[[[[2], [1]], [[4], [3]]], [[[5], [6]], [[7], [8]]]]

要在給定 seed 值的情況下生成確定性結果,請使用 tf.image.stateless_random_flip_left_right 。與使用seed 參數和tf.image.random_* ops 不同,tf.image.stateless_random_* ops 保證相同的結果給定相同的種子,而與調用函數的次數無關,並且與全局種子設置無關(例如 tf.random.set_seed )。

相關用法


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