登录
首页 » matlab » TSPA Multi-baseline Phase Unwrapping Method

TSPA Multi-baseline Phase Unwrapping Method

于 2021-03-26 发布
0 637
下载积分: 1 下载次数: 12

代码说明:

说明:  多基线SAR,InSAR相位解缠代码,Matlab版本,对应论文:Robust Two-Dimensional Phase Unwrapping for Multibaseline SAR Interferograms: A Two-Stage Programming Approach ,含数据、代码及验证结果(Multi baseline SAR, InSAR phase unwrapping code, matlab version, corresponding paper: robot two dimensional phase unwrapping for multibaseline SAR interferograms: a two stage programming approach, including data, code and verification results)

文件列表:

xishu_mnFast.m, 271 , 2018-03-01
Demo_TestData.mat, 631079 , 2018-03-08
out.mat, 278782 , 2018-03-08
ReadMe.txt, 5730 , 2018-03-08
Alg1_MCF1.m, 994 , 2018-03-06
Alg2_MCF2.m, 892 , 2018-03-06
Alg3_L2norm.m, 681 , 2018-03-06
b_dk.m, 171 , 2018-03-08
config.m, 15409 , 2018-03-08
CumSumMap22.m, 748 , 2018-03-08
DataLoadnCheck.m, 9816 , 2018-03-08
Demo_config.m, 15414 , 2018-03-08
Demo_main.m, 3698 , 2018-03-08
errX_2base_1.m, 516 , 2018-03-06
errX_2base_2.m, 528 , 2018-03-03
errY_2base_1.m, 518 , 2018-03-06
errY_2base_2.m, 538 , 2018-03-03
Esti_dkX_Mbase1.m, 13739 , 2018-03-08
Esti_dkX_Mbase2.m, 13752 , 2018-03-08
Esti_dkY_Mbase1.m, 13730 , 2018-03-08
Esti_dkY_Mbase2.m, 13548 , 2018-03-08
Esti_Res_Mbaseline1.m, 1308 , 2018-03-08
Esti_Res_Mbaseline2.m, 1306 , 2018-03-08
L2normMap.m, 104 , 2018-03-06
LS_dk_mtlb.m, 593 , 2018-02-03
main.m, 3693 , 2018-03-08
MCFresN_Glb_aeq.m, 2622 , 2018-03-08
MCFyuMap.m, 278 , 2018-03-06
network_mcf.m, 1230 , 2018-03-06
SaveVariable.m, 897 , 2018-03-06
searchList1.m, 3381 , 2018-03-08

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • Triangle_Renderer_Project
    老外写的程序,可对三角形进行渲染,有详细的算法介绍。非常棒(A good Triangle Renderer Project,with detailed introduction.)
    2011-04-22 09:18:28下载
    积分:1
  • 1
    说明:  利用matlab进行数字图像处理,滤除方格形条纹噪声,滤除效果还可以,但需要后期处理。(Digital image processing using matlab, square-shaped stripe noise filter, filter effects can be, but need post-processing.)
    2011-04-10 15:54:27下载
    积分:1
  • intel
    简单的图像积分图的汇编算法;图像积分图的计算在图像处理中经常用到(A simple compilation of the image points map algorithm image points in the map frequently used for image processing)
    2009-07-19 13:41:12下载
    积分:1
  • GradsSharp
    可用于CCS3.3的数字图像边缘锐化处理(Digital image edges can be used for sharpening CCS3.3)
    2014-10-28 11:52:14下载
    积分:1
  • graydegree
    关联下载,用于灰度相似度说明,欢迎下载使用,我感觉最好开源比较好(Download link for the gray-scale similarity shows that the use of welcome to download, I feel the best open source is better)
    2007-11-08 20:26:44下载
    积分:1
  • 1329572013522_0
    Graphcut算法的源码,用于图像处理领域的图像分割,该算法的matlab代码实现。(Graphcut algorithm source, used in image processing area image segmentation, this algorithm of matlab code realization.)
    2020-10-30 21:39:57下载
    积分:1
  • inverhuifu
    使用matlab分析传统光学系统加入三次相位掩模板之后对中间像进行图像复原(Analysis using matlab conventional optical system after adding three phase mask image on the intermediate image restoration)
    2013-08-28 16:59:39下载
    积分:1
  • GeometricVersion3
    课程设计 几何图形(满分50 分) 版本1:满分10 分 设计抽象类GeometricObject 及其子类Triangle 和Circle。 GeometricObject 类设计要求如下: ■ 一个名为color 的Color 类型的私有数据域,表示对象的颜色。 ■ 一个名为filled 的Boolean 类型的私有数据域,表示对象是否填充颜色。 ■ 一个名为dateCreated 的Date 类型的私有数据域,表示对象的创建日期。 ■ 一个无参构造方法。 ■ 一个能创建特定color 和filled 的有参构造方法。 ■ 相关数据域的访问器和修改器。 ■ 两个个名为draw 和erase 的抽象方法。 ■ 一个名为getArea 的抽象方法。 ■ 一个名为getPerimeter 的抽象方法。 ■ 重写toString 方法。 Triangle 类设计要求如下: ■ 三个名为side1、side2 和 side3 的double 类型的私有数据域表示三角形的三条边。它 们的默认值是1.0。要求三个数据域保留2 位小数。 ■ 一个无参的构造方法创建默认三角形。 ■ 一个能创建带指定side1、side2 和 side3 的有参构造方法。 ■ 所有三个数据域的访问器和修改器方法。 ■ 父类抽象方法的实现。 ■ 重写toString 方法。 Circle 类(Curriculum Design Geometry (out of 50) Version 1: 10 points Design an abstract class and its subclasses GeometricObject Triangle and Circle. GeometricObject class design requirements are as follows: ■ a named color of the Color type private data field that indicates the object s color. ■ a Boolean type called filled private data field that indicates whether the object fill color. ■ Date type named dateCreated private data field, which means that the object was created. ■ a no-argument constructor. ■ one can create a specific color and filled in with arg constructor. ■ Related data field accessor and modifier. ■ two months called draw and erase the abstract methods. ■ an abstract method named getArea. ■ an abstract method named getPerimeter. ■ overridden toString method. Triangle class design requirements are as follows: ■ three named side1, side2 and a double side3 private data field indicates the type of triangle with three sides. It Our default value is 1.0. Requires)
    2020-12-10 08:59:18下载
    积分:1
  • 细胞核分割计数
    细胞核分割计数,通过大津法阈值分割图像后,进行腐蚀以及膨胀等操作处理图像,标记连通区域来计数(Threshold segmentation count of nuclear image)
    2020-06-27 07:20:02下载
    积分:1
  • inverse11
    逆透视变换的算法,先生成一个图像 然后将图像坐标系和世界坐标系进行转换 最后将消除透视效果的图像显示出来(inverse perspective transformation algorithm Mr. images into one image will then coordinate system and the world coordinate system conversion for the final elimination of the effects of lens images show to)
    2007-06-13 21:14:20下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载