A question regarding creation of .mat file

2 次查看(过去 30 天)
Hello,
I have a question. Say I have 5 images and I have extracted the feature vectors for each of them. Now i want save all the feature vectors in a single .mat file.I have written the following code. I want to know if the code is ok or not?
img = rgb2gray(imread('E:\1.jpeg'));
[r,c]= size(img);
h = NaN(r,c,5); %pre-allocate memory
h(:,:,1) = img;
for k=1:3
h(:,:,k) = rgb2gray(imread(sprintf('%d.jpeg',k)));
end
save h.mat

回答(1 个)

Jan
Jan 2013-3-4
You do not want to save all local variables, so I assume this is better:
save h.mat h

类别

Help CenterFile Exchange 中查找有关 Workspace Variables and MAT-Files 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by