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
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Krishna Bindumadhavan
el 18 de En. de 2018
Editada: Krishna Bindumadhavan
el 18 de En. de 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?
Respuestas (1)
Raphael Ruschel
el 5 de Oct. de 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 comentarios
Raphael Ruschel
el 11 de Feb. de 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
el 19 de Mzo. de 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
Ver también
Categorías
Más información sobre Image Data Workflows en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!