how to convert 227x227 image into 227x227x3
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
manoj sain
am 3 Dez. 2021
Beantwortet: yanqi liu
am 4 Dez. 2021
I am working on deep learning. try to use alexnet for training . but it takes 227x227x227 and i have 227x227.
2 Kommentare
Walter Roberson
am 3 Dez. 2021
Your title asks about 224 x 224 to 224 x 224 x 3, but your text asks for 227 x 227 to 227 x 227 x 227 ?
The methods we would use would be different for the two.
Akzeptierte Antwort
yanqi liu
am 4 Dez. 2021
yes,sir,may be use
% convert 227x227 image into 227x227x3
imds = imageDatastore('imagefolder','IncludeSubfolders',true,'LabelSource','foldernames');
auimds = augmentedImageDatastore(imds,'ColorPreprocessing','gray2rgb')
% or
trainingImages = imageDatastore('imagefolder',...
'IncludeSubfolders',true,...
'LabelSource','foldernames','ReadFcn',@data_preporcess);
function data = data_preporcess(file)
data = imread(file);
if ndims(data) == 2
data = cat(3, data, data, data);
end
data = double(data);
end
0 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Recognition, Object Detection, and Semantic Segmentation finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!