91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 13KB
    文件類型: .rar
    金幣: 2
    下載: 0 次
    發(fā)布日期: 2021-06-02
  • 語言: 其他
  • 標(biāo)簽: matlab??insar??

資源簡介

利用枝切法實(shí)現(xiàn)相位解纏,實(shí)測可用,干涉相位條紋圖解纏。

資源截圖

代碼片段和文件信息

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%?BranchCuts.m?generates?branch?cuts?based?on?the?phase?residues.?This?is
%?done?using?the?Goldstein?method?as?described?in?“Two-dimensional?phase?
%?unwrapping:?theory?algorithms?and?software“?by?Dennis?Ghiglia?and?
%?Mark?Pritt.
%?“residue_charge“?is?a?matrix?wherein?positive?residues?are?1?and?
%?negative?residues?are?0.?residue_charge是一個(gè)矩陣,用來保存殘差值。

%?“max_box_radius“?defines?the?maximum?search?radius?for?the?balancing?of?
%?residues.?If?this?is?too?large?areas?will?be?isolated?by?the?branch
%?cuts.最大窗口半徑
%?“IM_mask“?is?a?binary?matrix.?This?serves?as?an?artificial?border?for?the
%?branch?cuts?to?connect?to.二進(jìn)制矩陣
%?Created?by?B.S.?Spottiswoode?on?15/10/2004
%?Last?modified?on?18/10/2004
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

function?branch_cuts=BranchCuts(residue_charge?max_box_radius?IM_mask);

[rowdim?coldim]=size(residue_charge);

branch_cuts=~IM_mask;???????????????????????????????%Define?initial?branch?cuts?borders?as?the?mask.
residue_charge_masked=residue_charge;
residue_charge(logical(~IM_mask))=0;????????????????%將不在掩膜中的殘差點(diǎn)去掉。Remove?all?residues?except?those?in?the?mask
cluster_counter=1;??????????????????????????????????%記錄每個(gè)群中的殘差點(diǎn)個(gè)數(shù)。Keep?track?of?the?number?of?residues?in?each?cluster
satellite_residues=0;???????????????????????????????%記錄衛(wèi)星參差點(diǎn)個(gè)數(shù)?Keep?track?of?the?number?of?satellite?residues?accounted?for

residue_binary=(residue_charge~=0);?????????????????%邏輯矩陣標(biāo)注了殘差點(diǎn)的位置,即正殘差點(diǎn)(+1標(biāo)記)和負(fù)殘差點(diǎn)(-1標(biāo)記)的位置全部用1表明,非殘差點(diǎn)不變是0。
residue_balanced=zeros(rowdim?coldim);?????????????%初始時(shí)假定所有的殘差點(diǎn)都是不平衡的。
[rowrescolres]?=?find(residue_binary);?????????????%找到殘差點(diǎn)的坐標(biāo)Find?the?coordinates?of?the?residues
adjacent_residues=zeros(rowdim?coldim);????????????%定義搜尋窗口中找到的新殘差點(diǎn)的位置Defines?the?positions?of?additional?residues?found?in?the?search?box
missed_residues=0;??????????????????????????????????%記錄有效的殘差點(diǎn)的個(gè)數(shù)?Keep?track?of?the?effective?number?of?residues?left?unbalanced?because?of

disp(‘Calculating?branch?cuts?...‘);
tic;%開始計(jì)時(shí)
temp=size(rowres);%rowres中保存了殘差值的行號(hào)
for?i=1:temp(1);????????????????????????????????????%Loop?through?the?residues
????radius=1;???????????????????????????????????????%Set?the?initial?box?size
????r_active=rowres(i);?????????????????????????????%當(dāng)前活動(dòng)殘差點(diǎn)的行數(shù)和列數(shù)。Coordinates?of?the?active?residue
????c_active=colres(i);
????count_nearby_residues_flag=1;???????????????????%用于說明是否跟蹤周圍殘差點(diǎn)的標(biāo)記。Flag?to?indicate?whether?or?not?to?keep?track?of?the?nearby?residues
????cluster_counter=1;??????????????????????????????%重置殘差點(diǎn)個(gè)數(shù)記錄Reset?the?cluster?counter
????adjacent_residues=zeros(rowdim?coldim);????????%重置鄰近的Reset?the?adjacent?residues?indicator
????charge_counter=residue_charge_masked(r_active?c_active);????????????????%保存初始?xì)埐铧c(diǎn)電量Store?the?initial?residue?charge
????if?residue_balanced(r_active?c_active)~=1????????????????????????%Has?this?residue?already?been?balanced?
????????while?(ch

?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----

?????文件??????18098??2009-12-28?20:21??枝切法相位解纏\枝切法相位解纏\BranchCuts.m

?????文件??????12083??2009-02-11?14:58??枝切法相位解纏\枝切法相位解纏\FloodFill.m

?????文件???????2360??2010-01-22?12:31??枝切法相位解纏\枝切法相位解纏\GoldsteinUnwrap2D.m

?????文件???????6964??2008-12-22?10:05??枝切法相位解纏\枝切法相位解纏\GuidedFloodFill.m

?????文件???????4382??2008-12-22?10:05??枝切法相位解纏\枝切法相位解纏\PhaseDerivativeVariance.m

?????文件???????2086??2009-12-28?15:07??枝切法相位解纏\枝切法相位解纏\PhaseResidues.m

?????文件???????5744??2018-12-17?00:37??枝切法相位解纏\枝切法相位解纏\QualityGuidedUnwrap2D.m

?????目錄??????????0??2018-12-22?00:39??枝切法相位解纏\枝切法相位解纏

?????目錄??????????0??2018-12-22?00:39??枝切法相位解纏

-----------?---------??----------?-----??----

????????????????51717????????????????????9


評(píng)論

共有 條評(píng)論