將一幅或多幅圖像從 RGB 轉換為 HSV。
用法
tf.raw_ops.RGBToHSV(
images, name=None
)
參數
-
images
一個Tensor
。必須是以下類型之一:half
,bfloat16
,float32
,float64
。一維或更高等級。要轉換的 RGB 數據。最後一個維度必須是大小 3。 -
name
操作的名稱(可選)。
返回
-
一個
Tensor
。具有與images
相同的類型。
輸出與 images
張量形狀相同的張量,包含像素的 HSV 值。僅當 images
中的值在 [0,1]
中時,輸出才被明確定義。
output[..., 0]
包含色調,output[..., 1]
包含飽和度,output[..., 2]
包含值。所有 HSV 值都在 [0,1]
中。色調 0 對應於純紅色,色調 1/3 是純綠色,2/3 是純藍色。
使用示例:
blue_image = tf.stack([
tf.zeros([5,5]),
tf.zeros([5,5]),
tf.ones([5,5])],
axis=-1)
blue_hsv_image = tf.image.rgb_to_hsv(blue_image)
blue_hsv_image[0,0].numpy()
array([0.6666667, 1. , 1. ], dtype=float32)
相關用法
- Python tf.raw_ops.ResourceScatterNdSub用法及代碼示例
- Python tf.raw_ops.ReadVariableXlaSplitND用法及代碼示例
- Python tf.raw_ops.ResourceScatterMul用法及代碼示例
- Python tf.raw_ops.RaggedGather用法及代碼示例
- Python tf.raw_ops.ReduceJoin用法及代碼示例
- Python tf.raw_ops.Range用法及代碼示例
- Python tf.raw_ops.RaggedCross用法及代碼示例
- Python tf.raw_ops.ResourceScatterAdd用法及代碼示例
- Python tf.raw_ops.ResourceScatterMax用法及代碼示例
- Python tf.raw_ops.ResourceScatterMin用法及代碼示例
- Python tf.raw_ops.RandomShuffle用法及代碼示例
- Python tf.raw_ops.Real用法及代碼示例
- Python tf.raw_ops.RaggedRange用法及代碼示例
- Python tf.raw_ops.Rint用法及代碼示例
- Python tf.raw_ops.Relu用法及代碼示例
- Python tf.raw_ops.ReverseV2用法及代碼示例
- Python tf.raw_ops.ResourceGather用法及代碼示例
- Python tf.raw_ops.Reverse用法及代碼示例
- Python tf.raw_ops.Reshape用法及代碼示例
- Python tf.raw_ops.ResourceScatterNdAdd用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.raw_ops.RGBToHSV。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。