Clear Filters
Clear Filters

Convert RGB Image to YCbCr color space

1 view (last 30 days)
Sajina Rose
Sajina Rose on 11 Feb 2020
Commented: Sajina Rose on 12 Feb 2020
YCbCr=rgb2ycbcr(enhancedImg);
Lum=mean2(YCbCr);
Above code produces error like..........
Error using rgb2ycbcr
Expected input number 1, RGB, to be real.
Error in rgb2ycbcr>parse_inputs (line 134)
validateattributes(X,{'uint8','uint16','single','double'},{'real'}, ...
Error in rgb2ycbcr (line 49)
rgb = parse_inputs(varargin{:});
Error in file1 (line 93)
YCbCr=rgb2ycbcr(enhancedImg);
%%%%%please help me
  4 Comments
Rik
Rik on 11 Feb 2020
You could use the real or abs functions, but I don't know if that makes sense for you.

Sign in to comment.

Answers (0)

Categories

Find more on Images in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!