convertHSVToRGB {CRImage}R Documentation

Conversion from HSV color space to RGB color space

Description

The function converts images in the HSV colour space to the RGB colour space.

Usage

convertHSVToRGB(imgHSV)

Arguments

imgHSV

An 'Image' object or an array in the HSV colour space.

Details

Standard colour space conversion.

Value

An array in the RGB colour space.

Author(s)

Henrik Failmezger, failmezger@cip.ifi.lmu.de

See Also

convertRGBToHSV convertRGBToLAB convertLABToRGB

Examples

f= system.file("extdata", "exImg.jpg", package="CRImage")
img=readImage(f)
#conversion to RGB color space
imgRGB=convertHSVToRGB(img)

[Package CRImage version 1.40.0 Index]