saveppm.m

来自「经典的张正友的摄像机的两步标定程序」· M 代码 · 共 46 行

M
46
字号
%SAVEPPM	Write a PPM format file
%
%	SAVEPPM(filename, I)
%
%	Saves the specified red, green and blue planes in a binary (P6)
%	format PPM image file.
%
% SEE ALSO:	loadppm
%
%	Copyright (c) Peter Corke, 1999  Machine Vision Toolbox for Matlab


% Peter Corke 1994

function saveppm(fname, I)

I = double(I);

if size(I,3) == 1,
   R = I;
   G = I;
   B = I;
else
   R = I(:,:,1);
   G = I(:,:,2);
   B = I(:,:,3);
end;

%keyboard;

	fid = fopen(fname, 'w');
	[r,c] = size(R');
	fprintf(fid, 'P6\n');
	fprintf(fid, '%d %d\n', r, c);
   fprintf(fid, '255\n');
   R = R';
   G = G';
   B = B';
	im = [R(:) G(:) B(:)];
   %im = reshape(im,r,c*3);
   im = im';
   %im = im(:);
   fwrite(fid, im, 'uchar');
   fclose(fid);
   

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?