How to change image size from 224 x 224 x 1 to 224 x 224 x 3
20 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
abdullah al-dulaimi
le 4 Nov 2022
Réponse apportée : Walter Roberson
le 4 Nov 2022
i have images with 224 x 224 x 1 size i want to convert it to 224 x 224 x 3
0 commentaires
Réponse acceptée
Kevin Holly
le 4 Nov 2022
Img = rand(224,224,1);
imshow(Img)
new(:,:,1) = Img;
new(:,:,2) = Img;
new(:,:,3) = Img;
imshow(new)
size(Img)
size(new)
2 commentaires
Kevin Holly
le 4 Nov 2022
Modifié(e) : Kevin Holly
le 4 Nov 2022
folder = uigetdir;
files = dir(fullfile(folder,'*.png'));
for ii = 1:length(files)
grayImage = imread(fullfile(folder,files(ii).name));
rgbImage = cat(3, grayImage, grayImage, grayImage);
imwrite(rgbImage,[fullfile(folder,files(ii).name) '_rgb.png'])
end
Plus de réponses (1)
Walter Roberson
le 4 Nov 2022
I recommend that you consider using an imageDatastore followed by an augmentedImageDatastore -- the augmented store can automatically resize your images and can automatically convert to RGB or grayscale.
0 commentaires
Voir également
Catégories
En savoir plus sur Convert Image Type dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!