MATLAB: Index exceeds matrix dimensions

index

Index exceeds matrix dimensions.
Error in test (line 19) newgreen = c(:,:,2);
I got an error like this while running the below code;
a = imread('lena.tif');
%imread(a);
%imgsize = getImgSize('image.jpg')
imshow(a)
img = imfinfo('lena.tif')
%I = rgb2gray(a);
%figure
%imshow(I)
red = a(:,:,1);
imshow(red)
green = a(:,:,2);
imshow(green)
blue = a(:,:,3);
imshow(blue)
c = horzcat(red,green,blue);
imshow(c)
newred = c(:,:,1);
imshow(red)
newgreen = c(:,:,2);
%imshow(green)
%newblue = c(:,:,3);
%imshow(blue)
how could i solve this ?

Best Answer

how could i solve this ?
c = cat(3, red, green, blue);
You were contatenating your arrays horizontally, resulting in a array of size height x 3*width instead of an array height x width x 3.
Note that I don't see the purpose of your code. It creates c exactly the same as a, and newred, newgreen and newblue exactly the same as red, green, blue.