空间数据(.png)
001.png
002.png
003.png
.
.
.
00n.png
到
001.mat
002.mat
003.mat
.
.
.
00n.mat
答案 0 :(得分:3)
补充EitanT的答案,如果您的文件没有此类文件名限制,例如:
file01.png
file02.png
fls1.png
fls2.png
pics001.png
pics002.png
您可以使用dir
功能,这样可以提供更大的灵活性。例如:
filenames = dir('*.png'); %# get information of all .png files in work dir
n = numel(filenames); %# number of .png files
for i = 1:n
A = imread( filenames(i).name );
%# gets full path, filename radical and extension
[fpath radical ext] = fileparts( filenames(i).name );
save([radical '.mat'], 'A');
end
fileparts
是一个MATLAB函数,它分解文件路径,部首和扩展名中的文件名。 例如,如果我有文件/home/user/photo.png
,此函数将返回:
fpath = /home/user
radical = photo
ext = .png
文件格式错误
OP出现以下错误:
???使用==>时出错imread at 387无法确定文件格式。 ==>中的错误PNG2MATFiles at 5 A = imread(filenames(i).name);
我已经下载了原始* .png图像并使用file
linux命令对其进行了测试。我的输出:
FY2E_2011_09_01_00_01_ir1_proj.png:Matlab v5 mat-file(小端) 版本0x0100 FY2E_2011_09_01_01_01_ir1_proj.png:Matlab v5 mat-file (小端)版本0x0100 FY2E_2011_09_01_02_01_ir1_proj.png: Matlab v5 mat-file(小端)版本0x0100 FY2E_2011_09_01_03_01_ir1_proj.png:Matlab v5 mat-file(小端) 版本0x0100 FY2E_2011_09_01_04_01_ir1_proj.png:Matlab v5 mat-file (小端)版本0x0100 FY2E_2011_09_01_05_01_ir1_proj.png: Matlab v5 mat-file(小端)版本0x0100 FY2E_2011_09_01_06_01_ir1_proj.png:Matlab v5 mat-file(小端) 版本0x0100 FY2E_2011_09_01_07_01_ir1_proj.png:Matlab v5 mat-file (小端)版本0x0100 FY2E_2011_09_01_08_01_ir1_proj.png: Matlab v5 mat-file(小端)版本0x0100 FY2E_2011_09_01_09_01_ir1_proj.png:Matlab v5 mat-file(小端) 版本0x0100 FY2E_2011_09_01_10_01_ir1_proj.png:Matlab v5 mat-file (小端)版本0x0100
imread
无法以'png'
打开这些文件,因为它们已存储为.mat
。
答案 1 :(得分:2)
试试这个:
for i = 1:n
A = imread(['00', num2str(i), '.png'], 'png'); %# Read PNG file
save(['00', num2str(i), '.mat'], 'A'); %# Store data to MAT file
end