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

34 vues (au cours des 30 derniers jours)
Diptayan Dasgupta
Diptayan Dasgupta le 12 Mai 2021
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);

Réponse acceptée

Daniel Pollard
Daniel Pollard le 12 Mai 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.

Plus de réponses (0)

Catégories

En savoir plus sur Images dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by