You are here : matlabImage Processinghsv2rgb

hsv2rgb() - Image Processing

M = hsv2rgb(H) converts
a hue-saturation-value (HSV) colormap to a red-green-blue (RGB) colormap. H is
an m-by-3 matrix, where m is
the number of colors in the colormap. The columns of H represent
hue, saturation, and value, respectively. M is
an m-by-3 matrix. Its columns are intensities
of red, green, and blue, respectively.rgb_image = hsv2rgb(hsv_image) converts
the HSV image to the equivalent RGB image. HSV is an m-by-n-by-3
image array whose three planes contain the hue, saturation, and value
components for the image. RGB is returned as an m-by-n-by-3
image array whose three planes contain the red, green, and blue components
for the image.


Syntax

M = hsv2rgb(H)rgb_image = hsv2rgb(hsv_image)


Example

You can give an example if you know one.


Output / Return Value


Limitations


Alternatives / See Also


Reference