hue saturation intensity

4 views (last 30 days)
bala k
bala k on 25 Mar 2011
I1 = imread('127.jpg');
>> I1 = imresize(I1, [256 256]);
>> [h s i] = rgb2hsi(I1);
??? Undefined function or method 'rgb2hsi' for input arguments of type 'uint8'.
>> I2 = double(I1);
>> [h s i] = rgb2hsi(I2);
??? Undefined function or method 'rgb2hsi' for input arguments of type 'double'.
how to i calculate intensity value

Accepted Answer

Walter Roberson
Walter Roberson on 25 Mar 2011
rgb2hsv() not rgb2hsi()
  2 Comments
bala k
bala k on 25 Mar 2011
i need to calculate intensity value
Walter Roberson
Walter Roberson on 25 Mar 2011
http://www.mathworks.com/matlabcentral/fileexchange/13630

Sign in to comment.

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!