⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 zstep.m

📁 Matlab code for encoding an unwrapping phase InSAR image based on Markov Random field
💻 M
字号:
function  unwph = zstep(wph)
%         unwph = zstep(wph);
%
%MATLAB 5.x
%
%Implements  Z step of the zpim algoritm with  discontinuities and 
%without mask.
%(see ieeetip, vol 11, no. 4, pp. 408-422, 2002)
%
%============================================================
%Input parameters
%
%wph	-> wrapped phase matrix (DATATYPE - double)
%
%============================================================
%Output  parameters
%
%unwph	-> unwrapped phase matrix (DATATYPE - double)
%
%
%
%   Author J.M. Bioucas Dias, 2003
% 
%   Topic -  Interferometry


[M N] =size(wph);

disc=dbuild(zeros(M,N),zeros(M,N));
unwph= double(zs(single(wph),single(disc)));




⌨️ 快捷键说明

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