將一幅或多幅圖像從 RGB 轉換為灰度。
用法
tf.image.rgb_to_grayscale(
images, name=None
)
參數
-
images
要轉換的 RGB 張量。最後一個維度的大小必須為 3,並且應該包含 RGB 值。 -
name
操作的名稱(可選)。
返回
- 轉換後的灰度圖像。
輸出相同的張量 DType
並排名為 images
。輸出的最後一維的大小為 1,包含像素的灰度值。
original = tf.constant([[[1.0, 2.0, 3.0]]])
converted = tf.image.rgb_to_grayscale(original)
print(converted.numpy())
[[[1.81...]]]
相關用法
- Python tf.image.rgb_to_yiq用法及代碼示例
- Python tf.image.rgb_to_hsv用法及代碼示例
- 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_grayscale。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。