将一幅或多幅图像从 RGB 转换为 YIQ。
用法
tf.image.rgb_to_yiq(
images
)
参数
-
images
二维或更高等级。要转换的图像数据。最后一个维度必须是大小 3。
返回
-
images
与images
形状相同的张量。
输出与 images
张量形状相同的张量,包含像素的 YIQ 值。仅当图像中的值在 [0,1] 中时,输出才被明确定义。
使用示例:
x = tf.constant([[[1.0, 2.0, 3.0]]])
tf.image.rgb_to_yiq(x)
<tf.Tensor:shape=(1, 1, 3), dtype=float32,
numpy=array([[[ 1.815 , -0.91724455, 0.09962624]]], dtype=float32)>
相关用法
- Python tf.image.rgb_to_hsv用法及代码示例
- Python tf.image.rgb_to_grayscale用法及代码示例
- Python tf.image.random_brightness用法及代码示例
- Python tf.image.random_contrast用法及代码示例
- Python tf.image.rot90用法及代码示例
- Python tf.image.random_hue用法及代码示例
- Python tf.image.random_saturation用法及代码示例
- Python tf.image.resize_with_crop_or_pad用法及代码示例
- Python tf.image.random_jpeg_quality用法及代码示例
- Python tf.image.random_flip_up_down用法及代码示例
- Python tf.image.random_crop用法及代码示例
- Python tf.image.resize用法及代码示例
- Python tf.image.random_flip_left_right用法及代码示例
- Python tf.image.pad_to_bounding_box用法及代码示例
- Python tf.image.adjust_hue用法及代码示例
- Python tf.image.flip_left_right用法及代码示例
- Python tf.image.convert_image_dtype用法及代码示例
- Python tf.image.stateless_random_flip_up_down用法及代码示例
- Python tf.image.extract_glimpse用法及代码示例
- Python tf.image.flip_up_down用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.image.rgb_to_yiq。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。