hue saturation intensity
Show older comments
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
More Answers (0)
Categories
Find more on Convert Image Type in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!