How do I delete the last dimension of a 256*256*3 matrix?

42 views (last 30 days)
I want to get rid of the "*3" part. That's the code I used. The image shouldn't be a multidimentional array.
Ii=imread('1 A.png');% 256*256 pixels 8bit
figure; imshow(Ii);
title('Object pattern')
axis off
Ii=double(Ii);
PH=rand([256,256]);
Ii=Ii.*exp(2i*pi*PH); % add a random phase on the object
M=512;
I=zeros(512);

Accepted Answer

Daniel Pollard
Daniel Pollard on 12 May 2021
Is Ii your 256x256x3 array? An image of 256x256 pixels will have 256x256x3 elements because of the red, green and blue elements.
To remove that third dimension, you could extract only one of the layers;
Ii = Ii(:,:,1);
You could average over the layers;
Ii = sum(Ii, 3)./3;
These options will result in Ii having size 256x256, removing the third dimension, but will also remove information that may be useful.

More 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!