alternate of imageDatastore in matlab 2013a ?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
%%Load training data
% Please note: these are 4 of the 10 categories available
% Feel free to choose which ever you like best!
categories = {'Deer','Dog','Frog','Cat'};
rootFolder = 'cifar10Train';
imds = imageDatastore(fullfile(rootFolder, categories), ...
'LabelSource', 'foldernames');
reference of the code: https://in.mathworks.com/matlabcentral/fileexchange/62990-deep-learning-tutorial-series
0 Commenti
Risposte (1)
Walter Roberson
il 25 Ott 2017
There was no equivalent to imageDatastore in R2013a.
Even if you converted to dataset objects using the Statistics Toolbox (the closest match, but missing a number of key routines compared to datastore objects), you would run into the problem that the CNN related routines did not exist in MATLAB in R2013a.
If you want to study deep learning and CNN, you should really get a MATLAB that is at least R2016b with the facilities improved even more in the versions newer than that.
4 Commenti
Vedere anche
Categorie
Scopri di più su Call Python from MATLAB in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!