A question regarding creation of .mat file

조회 수: 1 (최근 30일)
Ampi
Ampi 2013년 3월 4일
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