通过随机因子确定性地调整图像的对比度。
用法
tf.image.stateless_random_contrast(
image, lower, upper, seed
)
参数
-
image
具有 3 个或更多维度的图像张量。 -
lower
浮点数。随机对比度因子的下限。 -
upper
浮点数。随机对比度因子的上限。 -
seed
形状 [2] 张量,随机数生成器的种子。必须具有数据类型int32
或int64
。 (使用 XLA 时,仅允许使用int32
。)
返回
- contrast-adjusted 图像。
抛出
-
ValueError
如果upper <= lower
或lower < 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)>
相关用法
- Python tf.image.stateless_random_crop用法及代码示例
- Python tf.image.stateless_random_flip_up_down用法及代码示例
- Python tf.image.stateless_random_jpeg_quality用法及代码示例
- Python tf.image.stateless_random_hue用法及代码示例
- Python tf.image.stateless_random_saturation用法及代码示例
- Python tf.image.stateless_random_flip_left_right用法及代码示例
- 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_contrast。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。