用matlab实现图像融合

源代码在线查看: example01.m

软件大小: 587 K
上传用户: managerliu123
关键词: matlab 图像融合
下载地址: 免注册下载 普通下载 VIP

相关代码

				% Small technical example.				% Performs a check on the computation of certain central moments.				%				disp('Small technical example.');				disp('Performs a check on the computation of certain central moments.');				disp('FOR MORE INFORMATION:  help mupq');				disp(' ');				disp('See also the report http://ftp.cwi.nl/CWIreports/PNA/PNA-R0224.pdf');				disp('Dr. Paul M. de Zeeuw ');				disp('Copyright (C) 1998-2006 Stichting CWI, Amsterdam, The Netherlands');				disp(' ');				%---INSERT YOUR IMAGE HERE-----------------------------------------------------				if exist('imread','file') == 2				  Orig = double(imread('zenithgray.TIF','tiff'));				else				  load zenithgray; Orig = zenithgray; clear zenithgray;				end				%				disp([' Dimensions ' int2str( size(Orig) )]);				%------------------------------------------------------------------------------				disp([' Mass  ' num2str( mupq(Orig, 0, 0), '%+12.4e')]);				%				disp(' NICE CHECK: First order central moment (x-dir) should vanish');				disp([' reads ' num2str( mupq(Orig, 1, 0), '%+12.4e')]);				%				disp(' NICE CHECK: First order central moment (y-dir) should vanish');				disp([' reads ' num2str( mupq(Orig, 0, 1), '%+12.4e')]);				%							

相关资源