MATLAB: Converting RGB to HSV

colorcolor spacehsvImage Processing Toolboxrgb

Hi, I have a bunch of RGB values that I would need to convert to HSV. Does anyone know how to do so using Matlab coding? I am not very familiar with programming so any help would be appreciated!

Best Answer

Try this:
hsvValues = rgb2hsv(rgbValues);