convertRGBToHSV {CRImage} | R Documentation |
The RGB Image is converted to an HSV image.
convertRGBToHSV(img)
img |
The RGB image |
The entries of the array are Hue, Saturation and Value.
The image in HSV color space.
Henrik Failmezger, failmezger@cip.ifi.lmu.de
convertHSVToRGB convertRGBToLAB convertLABToRGB
f= system.file("extdata", "exImg.jpg", package="CRImage") img=readImage(f) #conversion to HSV color space imgHSV=convertRGBToHSV(img)