| convertHSVToRGB {CRImage} | R Documentation |
The function converts images in the HSV colour space to the RGB colour space.
convertHSVToRGB(imgHSV)
imgHSV |
An 'Image' object or an array in the HSV colour space. |
Standard colour space conversion.
An array in the RGB colour space.
Henrik Failmezger, failmezger@cip.ifi.lmu.de
convertRGBToHSV convertRGBToLAB convertLABToRGB
f= system.file("extdata", "exImg.jpg", package="CRImage")
img=readImage(f)
#conversion to RGB color space
imgRGB=convertHSVToRGB(img)