A question regarding creation of .mat file

4 ビュー (過去 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 Center および File ExchangeConvert Image Type についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by