DSP

matlab to dsp,bmp to dat

2019-07-13 16:07发布


[RGB,map]=imread('C:CCStudio_v3.3MyProjects3.1.2 helloimage_database1114.bmp'); M1=RGB;
p1=256;
p2=p1-255;
% M=[M1(p2:p1,p2:p1)];
I1=double(M1);
[m n]=size(I1);
imshow(I1,map)
fid=fopen('C:CCStudio_v3.3MyProjects3.1.2 helloimage_database1119.dat','wt');
% for i=1:m
%      for j=1:n
      fprintf(fid,'1651 1 0 1 0 ');
      fprintf(fid,'0x%x ',I1);
%      end
% end
fclose(fid); 主要功能是将bmp文件转换为dat文件,这个文件是DSP所能识别的