What is wrong with the code?

1 次查看(过去 30 天)
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.

采纳的回答

Image Analyst
Image Analyst 2013-11-11
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 个评论
sidra
sidra 2013-11-12
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 2013-11-13
Image Analyst your code worked out perfectly. Thank you so much!

请先登录,再进行评论。

更多回答(2 个)

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

请先登录,再进行评论。


Walter Roberson
Walter Roberson 2013-11-9
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 个评论
sidra
sidra 2013-11-10
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 2013-11-12
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.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Get Started with MATLAB 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by