What is wrong with the code?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
sidra
el 7 de Nov. de 2013
Comentada: sidra
el 13 de Nov. de 2013
I have created an imagearray consisting of 434 images, then extracted features from this imagearray using a function, now i want to store these features in a file in append mode.But when i do the last bit that is storing the features in a file i get an error.
for i=1:length(imagefile)
%images store in a variable imgarray
%Extracting features
fea=waveletfea(imgarray);
%Storing features
save('feature.mat','fea','-append');
end
error:
Unable to write MAT file
file may be corrupt
error in save('feature.mat','fea','append');
Any suggestions would be very helpful.Thanks in advance.
0 comentarios
Respuesta aceptada
Image Analyst
el 11 de Nov. de 2013
I'd store the results into a cell array or regular array and then just write out the array with one call to save() after the loop exits.
for k = 1 : n
% Code to read in imgarray, then...
fea{k} = waveletfea(imgarray);
end
folder = pwd;
baseFileName = 'feature.mat';
fullFileName = fullfile(folder, baseFileName);
save(fullFileName,'fea');
but first you have to make sure you have write access to the folder.
Más respuestas (2)
Walter Roberson
el 9 de Nov. de 2013
Unless you use different variable names for each file, append mode is going to replace the variable when you eventually read the file in. There is no provided way in MATLAB to say "load the 5th instance of the variable fea", and no way to index after loading to indicate "the 5th instance of how it was saved".
save -append does not act to concatenate the new data on to the end of the existing variable to produce a larger array.
You want to be concatenating to the end of an existing variable in a .mat file, see the matfile class.
I do not know why you are getting the corruption you are getting, but if you were to be using a -v7 file and were to append enough data, then the file itself could end up over 2 Gb, which is the maximum file size supported in -v7 .
2 comentarios
Walter Roberson
el 12 de Nov. de 2013
The key is "append new variables". Not append to an existing variable.
If you want to append to an existing variable, see the matfile class.
Image Analyst's idea of storing into a cell array and writing it out at the end, is good for most situations.
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!