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


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


通過隨機因子確定性地調整圖像的對比度。

用法

tf.image.stateless_random_contrast(
    image, lower, upper, seed
)

參數

  • image 具有 3 個或更多維度的圖像張量。
  • lower 浮點數。隨機對比度因子的下限。
  • upper 浮點數。隨機對比度因子的上限。
  • seed 形狀 [2] 張量,隨機數生成器的種子。必須具有數據類型 int32int64 。 (使用 XLA 時,僅允許使用 int32。)

返回

  • contrast-adjusted 圖像。

拋出

  • ValueError 如果 upper <= lowerlower < 0

在給定相同的 seed 的情況下保證相同的結果,與調用函數的次數無關,也與全局種子設置無關(例如 tf.random.set_seed )。

使用示例:

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]]]
seed = (1, 2)
tf.image.stateless_random_contrast(x, 0.2, 0.5, seed)
<tf.Tensor:shape=(2, 2, 3), dtype=float32, numpy=
array([[[3.4605184, 4.4605184, 5.4605184],
        [4.820173 , 5.820173 , 6.820173 ]],
       [[6.179827 , 7.179827 , 8.179828 ],
        [7.5394816, 8.539482 , 9.539482 ]]], dtype=float32)>

相關用法


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