Acutally, we are doing classifications based on .mat file but not image files. .mat files are our data (they are not coming from images, so I really dont wanna use imwrite)
Question about imageDatastore input
15 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi, I am using matlab neural network toolbox to do image classification. But what we have as train data now is .mat files instead of .jpg files. Every .mat file contains a 3D double matrix.
One way I am doing now is that for a .mat file I use imwrite function to transfer it into an image.And then use the standard way to input the data
trainImages = imageDatastore('DataImage\224M225\TrJPG','IncludeSubfolders',true,'LabelSource','foldernames');
trainImages.ReadFcn = @(loc)imresize(imread(loc),[224,224]);
But eventually what is used in the neural network is just a 3D matrix, is there any way I can directly input my .mat files without saving it as an image first? (because imwrite function makes the matrix different from the original one, lots of information is lost)
4 commentaires
Krishna Bindumadhavan
le 18 Jan 2018
Modifié(e) : Krishna Bindumadhavan
le 18 Jan 2018
Did you try using the nnstart command by typing
>> nnstart
at the MATLAB command line?
In case you are trying to solve a classification problem, you can select Pattern recognition and import data from a variety of formats including .mat files.
When you say your input data is a three dimensional matrix of doubles, could you clarify exactly how the data is structured , i.e how are the predictors referenced in this case?
Réponses (1)
Raphael Ruschel
le 5 Oct 2018
Hello, I had a similar problem and solved it like this:
train_images = imageDatastore(train_path,'IncludeSubfolders',true,'FileExtensions','.mat','ReadFcn',@loadmydata);
function data = loadmydata(filename)
load(filename)
end
On my case, I had my matrices saved as 'data' inside my .mat so I only needed to call load(filename)
9 commentaires
Raphael Ruschel
le 11 Fév 2019
I recommend you rename the variables inside your .mat in a way that everyone has the same name, as this would make it easier to load the variables using the loadmydata function
khadicha amonova
le 19 Mar 2019
I used so this code as you corrected, but error occured
Error using training option
ImageDatastore has no labels.
My mat file is consist of 1x1struct with Data 125 x60000 double and Labels 1x125 cell.
Did i make any error?
please help
Voir également
Catégories
En savoir plus sur Deep Learning Toolbox 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!