確定性地垂直(倒置)隨機翻轉圖像。
用法
tf.image.stateless_random_flip_up_down(
image, seed
)
參數
-
image
形狀為[batch, height, width, channels]
的 4-D 張量或形狀為[height, width, channels]
的 3-D 張量。 -
seed
形狀 [2] 張量,隨機數生成器的種子。必須具有數據類型int32
或int64
。 (使用 XLA 時,僅允許使用int32
。)
返回
-
與
image
類型和形狀相同的張量。
在給定相同的 seed
的情況下保證相同的結果,與調用函數的次數無關,也與全局種子設置無關(例如 tf.random.set_seed
)。
示例用法:
image = np.array([[[1], [2]], [[3], [4]]])
seed = (2, 3)
tf.image.stateless_random_flip_up_down(image, seed).numpy().tolist()
[[[3], [4]], [[1], [2]]]
相關用法
- Python tf.image.stateless_random_flip_left_right用法及代碼示例
- Python tf.image.stateless_random_jpeg_quality用法及代碼示例
- Python tf.image.stateless_random_hue用法及代碼示例
- Python tf.image.stateless_random_crop用法及代碼示例
- Python tf.image.stateless_random_contrast用法及代碼示例
- Python tf.image.stateless_random_saturation用法及代碼示例
- Python tf.image.stateless_random_brightness用法及代碼示例
- Python tf.image.stateless_sample_distorted_bounding_box用法及代碼示例
- Python tf.image.ssim用法及代碼示例
- Python tf.image.sobel_edges用法及代碼示例
- Python tf.image.sample_distorted_bounding_box用法及代碼示例
- Python tf.image.random_brightness用法及代碼示例
- Python tf.image.pad_to_bounding_box用法及代碼示例
- Python tf.image.adjust_hue用法及代碼示例
- Python tf.image.random_contrast用法及代碼示例
- Python tf.image.rot90用法及代碼示例
- Python tf.image.random_hue用法及代碼示例
- Python tf.image.flip_left_right用法及代碼示例
- Python tf.image.convert_image_dtype用法及代碼示例
- Python tf.image.random_saturation用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.image.stateless_random_flip_up_down。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。