Clear Filters
Clear Filters

What is wrong with the code?

1 view (last 30 days)
sidra
sidra on 7 Nov 2013
Commented: sidra on 13 Nov 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.

Accepted Answer

Image Analyst
Image Analyst on 11 Nov 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.
  2 Comments
sidra
sidra on 12 Nov 2013
Walter and Image Analyst thank you so much.
@Image Analyst: I will try this approach and get back to you with the results. Thanks again.
sidra
sidra on 13 Nov 2013
Image Analyst your code worked out perfectly. Thank you so much!

Sign in to comment.

More Answers (2)

ES
ES on 7 Nov 2013
Edited: ES on 7 Nov 2013
Is it not
save(filename,variables,'-append')
with a '-append' instead of just 'append'?
  1 Comment
sidra
sidra on 7 Nov 2013
I have used
save('feature.mat','fea','-append');
Sorry, typing error. Even though the format is right, i get the above said error.

Sign in to comment.


Walter Roberson
Walter Roberson on 9 Nov 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 Comments
sidra
sidra on 10 Nov 2013
Walter but isn't 'append mode' the best to store features in such a case? Because of the following statement on help : " -append: Add new variables to those already stored in an existing MAT-file".
And if not, then please suggest another way of storing the features from different images into a file.
Thank you in advance.
Walter Roberson
Walter Roberson on 12 Nov 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.

Sign in to comment.

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!