summaryrefslogtreecommitdiffstats
path: root/SD-VBS/common/toolbox/toolbox_basic/io/writepgm.m
blob: 113cb18a9a7c4eda742fa5f40643f4dca1d6874e (plain) (blame)
1
2
3
4
5
6
7
8
function I = writepgm(name,I)

  [y,x] = size(I);

  fid = fopen(name, 'w');
  fprintf(fid, 'P5\n%d %d\n255\n', x,y);
  fwrite(fid, I', 'uint8');
  fclose(fid);