首页 最新 热门 推荐

  • 首页
  • 最新
  • 热门
  • 推荐

ISCE+Mintpy进行SBASInSAR处理(持续更新)

  • 25-03-06 04:01
  • 3406
  • 8321
blog.csdn.net

目录

ISCE

stackSentinel.py参数列表

ISCE处理流程

stackSentinel.py函数实现

1.边界框处理

2.数据准备与筛选

3.相邻日期对的选择

4.SLC 堆栈处理

5.相关性堆栈处理(correlationStack):

6.干涉图堆栈处理(interferogramStack):

Mintpy

SBAS流程实现

1.配准

2.干涉图生成

3.干涉图滤波

4.相位解缠

5.地理编码

ICA分解


ISCE

SBAS处理流程可以参考博主

【时序InSAR开源软件】用isce2(stackSentinel.py)+mintpy进行哨兵一号SBAS小基线集InSAR时序处理全流程-CSDN博客

【INSAR形变监测】SENTINEL-1 TOPS INSAR全流程 (ISCE2+MINTPY)_sentienl-1 形变处理-CSDN博客

ISCE主要是使用stackSentinel.py生成干涉图

源码:isce2/contrib/stack/topsStack/stackSentinel.py at main · isce-framework/isce2 · GitHub

stackSentinel.py输入输出为:

输入数据:SLC、DEM、Orbits数据

输出数据:一系列可运行文件,每个运行文件实际上有几个相互独立的命令,每个运行文件的配置文件包括执行特定命令/函数的处理选项。

stackSentinel.py

 stackSentinel.py使用示例

  1. # interferogram workflow with 2 nearest neighbor connections (default coregistration is NESD):
  2. stackSentinel.py -s../SLC/ -d ../../MexicoCity/demLat_N18_N20_Lon_W100_W097.dem.wgs84 -b '19 20 -99.5 -98.5' -a ../../AuxDir/ -o ../../Orbits -c 2
  3. # interferogram workflow with all possible interferograms and coregistration with only geometry:
  4. stackSentinel.py -s../SLC/ -d ../../MexicoCity/demLat_N18_N20_Lon_W100_W097.dem.wgs84 -b '19 20 -99.5 -98.5' -a ../../AuxDir/ -o ../../Orbits -C geometry -c all
  5. # correlation workflow with all possible correlation pairs and coregistration with geometry:
  6. stackSentinel.py -s../SLC/ -d ../../MexicoCity/demLat_N18_N20_Lon_W100_W097.dem.wgs84 -b '19 20 -99.5 -98.5' -a ../../AuxDir/ -o ../../Orbits -C geometry -c all -W correlation
  7. # slc workflow that produces a coregistered stack of SLCs
  8. stackSentinel.py -s../SLC/ -d ../../MexicoCity/demLat_N18_N20_Lon_W100_W097.dem.wgs84 -b '19 20 -99.5 -98.5' -a ../../AuxDir/ -o ../../Orbits -C NESD -W slc

stackSentinel.py参数列表

  1. | 参数 | 短选项 | 长选项 | 类型 | 是否必需 | 默认值 | 选项 | 含义 |
  2. |--|--|--|--|--|--|--|
  3. | display_help | -H | --hh | 无 | 否 | 无 | 无 | 显示详细帮助信息,调用 customArgparseAction 打印 helpstr 并退出程序 |
  4. | slc_directory | -s | --slc_directory | str | 是 | 无 | 无 | 包含所有 Sentinel SLC 的目录 |
  5. | orbit_directory | -o | --orbit_directory | str | 是 | 无 | 无 | 包含所有轨道数据的目录 |
  6. | aux_directory | -a | --aux_directory | str | 是 | 无 | 无 | 包含所有辅助文件的目录 |
  7. | working_directory | -w | --working_directory | str | 否 | ./ | 无 | 工作目录 |
  8. | dem | -d | --dem | str | 是 | 无 | 无 | DEM 文件的路径 |
  9. | polarization | -p | --polarization | str | 否 | vv | 无 | SAR 数据的极化方式 |
  10. | workflow | -W | --workflow | str | 否 | interferogram | slc, correlation, interferogram, offset | InSAR 处理的工作流 |
  11. | swath_num | -n | --swath_num | str | 否 | 1 2 3 | 无 | 要处理的条带列表 |
  12. | bbox | -b | --bbox | str | 否 | 无 | 无 | 经纬度边界(SNWE),示例:'19 20 -99.5 -98.5' |
  13. | exclude_dates | -x | --exclude_dates | str | 否 | 无 | 无 | 要排除处理的日期列表,示例:'20141007,20141031' |
  14. | include_dates | -i | --include_dates | str | 否 | 无 | 无 | 要包含处理的日期列表,示例:'20141007,20141031' |
  15. | start_date | --start_date | 无 | str | 否 | 无 | 无 | 堆栈处理的开始日期,格式应为 YYYY-MM-DD,如 2015-01-23 |
  16. | stop_date | --stop_date | 无 | str | 否 | 无 | 无 | 堆栈处理的结束日期,格式应为 YYYY-MM-DD,如 2017-02-26 |
  17. | coregistration | -C | --coregistration | str | 否 | NESD | geometry, NESD | 配准选项 |
  18. | reference_date | -m | --reference_date | str | 否 | 无 | 无 | 参考采集的目录 |
  19. | snr_misreg_threshold | --snr_misreg_threshold | 无 | str | 否 | 10 | 无 | 使用互相关估计距离失配准的 SNR 阈值 |
  20. | esd_coherence_threshold | -e | --esd_coherence_threshold | str | 否 | 0.85 | 无 | 使用增强谱分集估计方位失配准的相干阈值 |
  21. | num_overlap_connections | -O | --num_overlap_connections | str | 否 | 3 | 无 | 用于 NESD 计算(方位偏移失配准)的每个日期和后续日期之间重叠干涉图的数量 |
  22. | num_connections | -c | --num_connections | str | 否 | 1 | 无 | 每个日期和后续日期之间干涉图的数量 |
  23. | azimuth_looks | -z | --azimuth_looks | str | 否 | 3 | 无 | 干涉图多视处理时的方位视数 |
  24. | range_looks | -r | --range_looks | str | 否 | 9 | 无 | 干涉图多视处理时的距离视数 |
  25. | filter_strength | -f | --filter_strength | str | 否 | 0.5 | 无 | 干涉图滤波的强度 |
  26. | unw_method | -u | --unw_method | str | 否 | snaphu | icu, snaphu | 解缠方法 |
  27. | rmFilter | --rmFilter | 无 | bool | 否 | False | 无 | 是否生成一个额外的去除滤波效果的解缠文件 |
  28. | param_ion | --param_ion | 无 | str | 否 | 无 | 无 | 电离层估计参数文件,若提供将进行电离层估计 |
  29. | num_connections_ion | --num_connections_ion | 无 | str | 否 | 3 | 无 | 用于电离层估计的每个日期和后续日期之间干涉图的数量 |
  30. | useGPU | -useGPU | --useGPU | bool | 否 | False | 无 | 当可用时允许程序使用 GPU |
  31. | num_process | --num_proc | --num_process | int | 否 | 1 | 无 | 每个运行文件中并行运行的任务数量 |
  32. | num_process4topo | --num_proc4topo | --num_process4topo | int | 否 | 1 | 无 | 并行进程的数量(仅针对地形) |
  33. | text_cmd | -t | --text_cmd | str | 否 | 无 | 无 | 要添加到每个运行文件每行开头的文本命令 |
  34. | virtual_merge | -V | --virtual_merge | str | 否 | 无 | True, False | 对合并的 SLC 和几何文件使用虚拟文件,不同工作流有不同默认值 |

其中比较重要的

-s:slc(single look complex)影像所在目录。

-d表示包含影像范围的DEM文件(WGS84),可利用dem.py命令线上下载。

-a为S1-A的的辅助文件目录,因为S1-A的SAR影像可能由不同版本的设备处理仪器(IPF)获得,而S1-B则不需要

-o为S1轨道文件的目录,缺失的文件将自动下载

-b为研究区经纬度范围

-c为SAR影像连接数,确定每景影像与其相邻日期最近的影像生成干涉图的数目,取决于时间基线,对S1而言一般取3

-u为解缠算法,一般选snaphu

-n为SAR影像的subswath的编号,从左到右为1,2,3

-f为干涉影像的滤波强度

-z为方位向的视数

-r为距离向视数,S1的SAR影像的分辨率为5 m * 20 m(距离*方位),视数越小则干涉影像目标点数(或者像元)越多,处理越费时,但是形变细节保留更多。

--reference_date为影像的参考日期。

       执行stackSentinel.py命令后会在当前目录生成一系列文件和文件夹,在runfile文件夹下有16个python脚本文件,分别代表干涉处理的步骤,依次运行脚本则得到一堆干涉影像。


注意:使用stackSentinel.py后可能会生成11个run文件,这个是由于stackSentinel.py参数不同导致的


ISCE处理流程

run_01_unpack_topo_reference:

用于配置和执行解包堆栈参考SLC的操作。它会调用unpackStackReferenceSLC方法,从safe_dict中获取相关信息,对参考Sentinel - 1 SLC数据进行解包,将数据从原始的SAFE文件格式转换为适合后续处理的格式。

run_02_unpack_secondary_slc:

负责配置和执行解包辅助SLC的任务。通过调用unpackSecondarysSLC方法,使用stackReferenceDate、secondaryDates和safe_dict中的信息,对辅助日期对应的Sentinel - 1 SLC数据进行解包处理,同样将数据转换为可进一步处理的格式。

 run_03_average_baseline:

用于配置和执行计算平均基线的操作。它调用averageBaseline方法,利用stackReferenceDate和secondaryDates相关数据,计算平均基线。基线信息在后续的干涉测量等处理中非常重要,它反映了不同SLC数据采集时卫星轨道的相对位置关系。

 run_04_extract_burst_overlaps:

由于inps.coregistration为NESD且updateStack为False,被生成并用于配置和执行提取突发重叠区域的操作。通过调用extractOverlaps方法,从解包后的SLC数据中确定不同突发之间的重叠区域,这些重叠区域的数据将用于后续的精确配准步骤。

 run_05_overlap_geo2rdr:

负责配置和执行将重叠区域从地理坐标转换为距离向坐标并计算偏移量的操作。调用geo2rdr_offset方法,针对secondaryDates对应的SLC数据,在之前提取的重叠区域基础上,进行坐标转换和偏移量计算,为后续的重采样做准备。

  run_06_overlap_resample:

用于配置和执行对重叠区域进行带载波重采样的操作。通过调用resample_with_carrier方法,以secondaryDates数据为基础,结合之前计算的偏移量,对重叠区域的数据进行重采样,使不同SLC数据在重叠区域的坐标和分辨率达到一致,便于后续处理。

 run_07_pairs_misreg:

如果updateStack为True,配置和执行针对secondaryDates的成对配准误差处理;若updateStack为False,则针对acquisitionDates。通过调用pairs_misregistration方法,利用safe_dict中的数据信息,对每对SLC数据进行配准误差的计算和分析,以确定数据之间的精确差异,为后续的时间序列处理提供基础。 

run_08_timeseries_misreg:

用于配置和执行时间序列的配准误差处理。调用timeseries_misregistration方法,综合之前计算的成对配准误差信息,对整个时间序列的SLC数据进行配准误差的进一步分析和处理,以提高数据在时间维度上的一致性和准确性。

 run_09_fullBurst_geo2rdr:

负责配置和执行对全突发数据进行从地理坐标到距离向坐标的偏移处理。调用geo2rdr_offset方法,并设置fullBurst='True',对secondaryDates对应的全突发SLC数据进行坐标转换和偏移量计算,与之前重叠区域的处理类似,但针对的是整个突发数据。

 run_10_fullBurst_resample:

用于配置和执行对全突发数据进行带载波的重采样操作。调用resample_with_carrier方法,同样设置fullBurst='True',对经过地理到距离向坐标偏移处理后的全突发secondaryDates数据进行重采样,确保全突发数据在坐标和分辨率上的一致性,满足后续处理要求。 

 run_11_extract_stack_valid_region:

负责配置和执行提取堆栈有效区域的操作。通过调用extractStackValidRegion方法,对经过前面一系列处理后的SLC堆栈数据进行分析,确定数据中的有效区域,排除无效或噪声数据区域,提高后续处理的数据质量。 

run_12_merge_reference_secondary_slc:

因为mergeSLC为True,用于配置和执行合并参考SLC和辅助SLC的操作。通过调用mergeReference方法合并参考日期的SLC数据,调用mergeSecondarySLC方法合并secondaryDates对应的辅助SLC数据,并设置virtual = 'False',表示采用实际合并而非虚拟合并的方式,将多个SLC数据合并为一个更便于后续处理的数据集。 

run_13_grid_baseline:

负责配置和执行网格化基线的操作。调用gridBaseline方法,使用stackReferenceDate和secondaryDates相关数据,将之前计算的平均基线信息进行网格化处理,将基线数据转换为适合网格化分析和后续应用的格式。

run_14_merge_burst_igram:

配置了合并突发干涉图的操作,接着调用runObj.igram_mergeBurst(acquisitionDates, safe_dict, pairs)方法,将之前生成的突发干涉图进行合并,以得到更完整或适合后续处理的干涉图数据。

run_15_filter_coherence:

用于配置对干涉图相干性进行滤波的操作,然后调用runObj.filter_coherence(pairs)方法,对由pairs确定的干涉图数据进行相干性滤波处理,以提高干涉图的质量和可靠性。

run_16_unwrap:

配置了相位解缠的操作,随后调用runObj.unwrap(pairs)方法,对pairs对应的干涉图数据进行相位解缠处理,将缠绕的相位数据转换为连续的相位值,以便进行后续的变形分析等应用。 

stackSentinel.py函数实现

1.边界框处理

generate_geopolygon 函数将用户输入的边界框信息(bbox)转换为 shapely 的 Polygon 对象,使用 shapely.geometry 库,将边界框的经纬度坐标转换为 Point 并创建 Polygon。

2.数据准备与筛选

def get_dates(inps)

get_dates 函数负责从 SLC 目录中筛选出所需的 SAFE 文件,根据输入的日期范围(起始日期、结束日期、排除日期、包含日期)、边界框等条件进行筛选。

对于每个 SAFE 文件,创建 sentinelSLC 对象,获取文件的详细信息,包括日期、轨道信息、边界信息(使用 getkmlQUAD 等方法),并存储在 safe_dict 中。

检查 SAFE 文件数量,至少需要两个文件。

确定参考日期 stackReferenceDate 和次要日期列表 secondaryDates。

计算并输出日期列表中所有 SAFE 文件的重叠区域的经纬度范围。

3.相邻日期对的选择

def selectNeighborPairs(dateList, stackReferenceDate, secondaryDates, num_connections, updateStack=False)

selectNeighborPairs:对于一般工作流,根据 num_connections 选择相邻日期对。当 num_connections 为具体数字 n 时,从日期列表中选择满足 (dateList[i], dateList[j]) 且 j <= i + n 的日期对;当 num_connections 为 all 时,选择所有可能的相邻日期对。

4.SLC 堆栈处理

  • 若不是更新堆栈,先通过 runObj.unpackStackReferenceSLC 解包参考 SLC 的地形信息。
  • 解包次要 SLC(runObj.unpackSecondarysSLC)。
  • 计算平均基线(runObj.averageBaseline)。
  • 若使用 NESD 配准:
    1. 提取重叠区域(runObj.extractOverlaps)。
    2. 进行几何到距离 - 多普勒(geo2rdr)转换(runObj.geo2rdr_offset)。
    3. 进行重叠区域的重采样(runObj.resample_with_carrier)。
    4. 计算成对的误配准(runObj.pairs_misregistration)。
    5. 计算时间序列误配准(runObj.timeseries_misregistration)。
  • 进行全脉冲的几何到距离 - 多普勒转换和重采样。
  • 提取堆栈的有效区域(runObj.extractStackValidRegion)。
  • 可选择合并参考和次要 SLC 并计算基线网格(runObj.mergeReference 和 runObj.gridBaseline)。

5.相关性堆栈处理(correlationStack):

  • 调用 slcStack 进行 SLC 处理。
  • 合并参考和次要 SLC(根据 virtual_merge 参数决定是否虚拟合并)。
  • 生成和合并干涉图的突发(runObj.generate_burstIgram)。对于两个SLC数据I1、I2,干涉图Iint
  • 计算相干性并过滤(runObj.filter_coherence)。

6.干涉图堆栈处理(interferogramStack):

  1. 调用 slcStack 进行 SLC 处理。
  2. 合并参考和次要 SLC。
  3. 生成和合并干涉图的突发。
  4. 过滤相干性。
  5. 对干涉图进行解缠(runObj.unwrap)。
  • 类似于相关性堆栈处理,但增加了解缠步骤。干涉图的相位是缠绕在 [-pi,pi] 范围内的,解缠是将其转换为连续相位,以便更准确地反映地形或地表形变信息,使用 snaphu 或 icu 等方法,基于相位梯度和最小生成树等算法。

解缠:假设缠绕相位为 faiw,解缠的目标是得到连续相位faiu 。基于相邻像素的相位差,满足条件|detfai| ≤pi ,通过区域增长、最小生成树等算法找到最优的解缠路径,使相邻像素的相位差满足此条件,最终将缠绕相位展开为连续相位。

七、偏移堆栈处理(offsetStack):

在 SLC 数据的基础上计算密集偏移,基于互相关函数找到 SLC 数据之间的偏移量,可用于地表位移监测。

八、电离层堆栈处理(ionosphereStack):

利用不同频率子带的干涉图差异来估计电离层延迟,通过一系列处理步骤将电离层延迟信息从干涉图中提取出来。不同频率的信号对电离层延迟的响应不同,通过生成电离层干涉图、解缠和反演等操作得到电离层信息。考虑脉冲特性可提高估计精度,因为不同脉冲受电离层影响不同。

九、状态检查和更新(checkCurrentStatus):

通过文件系统检查和文件命名规则,利用集合操作找出新数据。

Mintpy

主要使用smallbaselineApp.py进行时序分析

源码:MintPy/src/mintpy/smallbaselineApp.py at main · insarlab/MintPy · GitHub

smallbaselineApp.py 

实现流程

MintPy的处理流程主要有11步,分别为

(1)加载干涉影像

(2)干涉网络修改

(3)参考点选择

(4)解缠误差改正

(5)网络反演

(6)大气延迟改正

(7)去除相位梯度

(8)地形残余误差改正

(9)剔除噪声SAR影像,确认最佳参考影像

(10)平均LOS速率估计

(11)地理编码。

通过下边这段语句

smallbaselineApp.py -g

生成的模板文件,通过执行模板文件可以一次性处理所有步骤

  1. # vim: set filetype=cfg:
  2. ##------------------------ smallbaselineApp.cfg ------------------------##
  3. ########## computing resource configuration
  4. mintpy.compute.maxMemory = auto #[float > 0.0], auto for 4, max memory to allocate in GB
  5. ## 分配计算的最大内存,默认为4G
  6. ## parallel processing with dask
  7. ## currently apply to steps: invert_network, correct_topography
  8. ## cluster = none to turn off the parallel computing
  9. ## numWorker = all to use all of locally available cores (for cluster = local only)
  10. ## numWorker = 80% to use 80% of locally available cores (for cluster = local only)
  11. ## config = none to rollback to the default name (same as the cluster type; for cluster != local)
  12. mintpy.compute.cluster = auto #[local / slurm / pbs / lsf / none], auto for none, cluster type
  13. ## 集群计算类型
  14. mintpy.compute.numWorker = auto #[int > 1 / all / num%], auto for 4 (local) or 40 (slurm / pbs / lsf), num of workers
  15. ## 并行工作的线程数
  16. mintpy.compute.config = auto #[none / slurm / pbs / lsf ], auto for none (same as cluster), config name
  17. ## 集群配置名称
  18. ########## 1. load_data
  19. ##---------add attributes manually
  20. ## MintPy requires attributes listed at: https://mintpy.readthedocs.io/en/latest/api/attributes/
  21. ## Missing attributes can be added below manually (uncomment #), e.g.
  22. # ORBIT_DIRECTION = ascending
  23. # PLATFORM = CSK
  24. # ...
  25. ## a. autoPath - automatic path pattern defined in mintpy.defaults.auto_path.AUTO_PATH_*
  26. ## b. load_data.py -H to check more details and example inputs.
  27. ## c. compression to save disk usage for ifgramStack.h5 file:
  28. ## no - save 0% disk usage, fast [default]
  29. ## lzf - save ~57% disk usage, relative slow
  30. ## gzip - save ~62% disk usage, very slow [not recommend]
  31. mintpy.load.processor = auto #[isce, aria, hyp3, gmtsar, snap, gamma, roipac, nisar], auto for isce
  32. ## 指定处理数据的处理器
  33. mintpy.load.autoPath = auto #[yes / no], auto for no, use pre-defined auto path
  34. mintpy.load.updateMode = no #[yes / no], auto for yes, skip re-loading if HDF5 files are complete
  35. ## 是否在HD5文件完整时跳过加载
  36. mintpy.load.compression = auto #[gzip / lzf / no], auto for no.
  37. ## 数据加载压缩方式
  38. ##---------for ISCE only:
  39. mintpy.load.metaFile = ../reference/IW*.xml #[path of common metadata file for the stack], i.e.: ./reference/IW1.xml, ./referenceShelve/data.dat
  40. ## 堆栈公共元数据文件路径
  41. mintpy.load.baselineDir = ../baselines #[path of the baseline dir], i.e.: ./baselines
  42. ## 基线目录路径
  43. ##---------interferogram stack:
  44. mintpy.load.unwFile = ../merged/interferograms/*/filt_fine.unw #[path pattern of unwrapped interferogram files]
  45. mintpy.load.corFile = ../merged/interferograms/*/filt_fine.cor #[path pattern of spatial coherence files]
  46. mintpy.load.connCompFile = ../merged/interferograms/*/filt_fine.unw.conncomp #[path pattern of connected components files], optional but recommended
  47. mintpy.load.intFile = auto #[path pattern of wrapped interferogram files], optional
  48. mintpy.load.magFile = auto #[path pattern of interferogram magnitude files], optional
  49. ##---------ionosphere stack (optional):
  50. mintpy.load.ionUnwFile = auto #[path pattern of unwrapped interferogram files]
  51. mintpy.load.ionCorFile = auto #[path pattern of spatial coherence files]
  52. mintpy.load.ionConnCompFile = auto #[path pattern of connected components files], optional but recommended
  53. ##---------offset stack (optional):
  54. mintpy.load.azOffFile = auto #[path pattern of azimuth offset file]
  55. mintpy.load.rgOffFile = auto #[path pattern of range offset file]
  56. mintpy.load.azOffStdFile = auto #[path pattern of azimuth offset variance file], optional but recommended
  57. mintpy.load.rgOffStdFile = auto #[path pattern of range offset variance file], optional but recommended
  58. mintpy.load.offSnrFile = auto #[path pattern of offset signal-to-noise ratio file], optional
  59. ##---------geometry:
  60. mintpy.load.demFile = ../merged/geom_reference/hgt.rdr #[path of DEM file]
  61. mintpy.load.lookupYFile = ../merged/geom_reference/lat.rdr #[path of latitude /row /y coordinate file], not required for geocoded data
  62. mintpy.load.lookupXFile = ../merged/geom_reference/lon.rdr #[path of longitude/column/x coordinate file], not required for geocoded data
  63. mintpy.load.incAngleFile = ../merged/geom_reference/los.rdr #[path of incidence angle file], optional but recommended
  64. mintpy.load.azAngleFile = ../merged/geom_reference/los.rdr #[path of azimuth angle file], optional
  65. mintpy.load.shadowMaskFile = ../merged/geom_reference/shadowMask.rdr #[path of shadow mask file], optional but recommended
  66. mintpy.load.waterMaskFile = auto #[path of water mask file], optional but recommended
  67. mintpy.load.bperpFile = auto #[path pattern of 2D perpendicular baseline file], optional
  68. ##---------subset (optional):
  69. ## if both yx and lalo are specified, use lalo option unless a) no lookup file AND b) dataset is in radar coord
  70. mintpy.subset.yx = auto #[y0:y1,x0:x1 / no], auto for no
  71. mintpy.subset.lalo = auto #[S:N,W:E / no], auto for no
  72. #指定经纬范围
  73. ##---------multilook (optional):
  74. ## multilook while loading data with the specified method, to reduce dataset size
  75. ## method - nearest, mean and median methods are applicable to interferogram/ionosphere/offset stack(s), except for:
  76. ## connected components and all geometry datasets, for which nearest is hardwired.
  77. ## Use mean / median method with caution! It could smoothen the noise for a better SNR, but it could also smoothen the
  78. ## unwrapping errors, breaking the integer 2pi relationship, which is used in the unwrapping error correction.
  79. ## If you really want to increase the SNR, consider re-generate your stack of interferograms with more looks instead.
  80. mintpy.multilook.method = auto #[nearest, mean, median], auto for nearest - lines/rows skipping approach
  81. ## 多视处理方式
  82. mintpy.multilook.ystep = auto #[int >= 1], auto for 1 - no multilooking
  83. ## y方向多视步长
  84. mintpy.multilook.xstep = auto #[int >= 1], auto for 1 - no multilooking
  85. ########## 2. modify_network
  86. ## 1) Network modification based on temporal/perpendicular baselines, date, num of connections etc.
  87. mintpy.network.tempBaseMax = auto #[1-inf, no], auto for no, max temporal baseline in days
  88. ## 最大时间基线,可以设置一个天数,超过该天数的干涉图将会被排除
  89. mintpy.network.perpBaseMax = auto #[1-inf, no], auto for no, max perpendicular spatial baseline in meter
  90. mintpy.network.connNumMax = auto #[1-inf, no], auto for no, max number of neighbors for each acquisition
  91. mintpy.network.startDate = auto #[20090101 / no], auto for no
  92. mintpy.network.endDate = auto #[20110101 / no], auto for no
  93. mintpy.network.excludeDate = auto #[20080520,20090817 / no], auto for no
  94. mintpy.network.excludeDate12 = auto #[20080520_20090817 / no], auto for no
  95. mintpy.network.excludeIfgIndex = auto #[1:5,25 / no], auto for no, list of ifg index (start from 0)
  96. mintpy.network.referenceFile = auto #[date12_list.txt / ifgramStack.h5 / no], auto for no
  97. ## 2) Data-driven network modification
  98. ## a - Coherence-based network modification = (threshold + MST) by default
  99. ## reference: Yunjun et al. (2019, section 4.2 and 5.3.1); Chaussard et al. (2015, GRL)
  100. ## It calculates a average coherence for each interferogram using spatial coherence based on input mask (with AOI)
  101. ## Then it finds a minimum spanning tree (MST) network with inverse of average coherence as weight (keepMinSpanTree)
  102. ## Next it excludes interferograms if a) the average coherence < minCoherence AND b) not in the MST network.
  103. mintpy.network.coherenceBased = auto #[yes / no], auto for no, exclude interferograms with coherence < minCoherence
  104. mintpy.network.minCoherence = auto #[0.0-1.0], auto for 0.7
  105. ## b - Effective Coherence Ratio network modification = (threshold + MST) by default
  106. ## reference: Kang et al. (2021, RSE)
  107. ## It calculates the area ratio of each interferogram that is above a spatial coherence threshold.
  108. ## This threshold is defined as the spatial coherence of the interferograms within the input mask.
  109. ## It then finds a minimum spanning tree (MST) network with inverse of the area ratio as weight (keepMinSpanTree)
  110. ## Next it excludes interferograms if a) the area ratio < minAreaRatio AND b) not in the MST network.
  111. mintpy.network.areaRatioBased = auto #[yes / no], auto for no, exclude interferograms with area ratio < minAreaRatio
  112. mintpy.network.minAreaRatio = auto #[0.0-1.0], auto for 0.75
  113. ## Additional common parameters for the 2) data-driven network modification
  114. mintpy.network.keepMinSpanTree = auto #[yes / no], auto for yes, keep interferograms in Min Span Tree network
  115. mintpy.network.maskFile = auto #[file name, no], auto for waterMask.h5 or no [if no waterMask.h5 found]
  116. mintpy.network.aoiYX = auto #[y0:y1,x0:x1 / no], auto for no, area of interest for coherence calculation
  117. ## 感兴趣的范围(y,x)
  118. mintpy.network.aoiLALO = auto #[S:N,W:E / no], auto for no - use the whole area
  119. ## 感兴趣的范围(经纬度)
  120. ########## 3. reference_point
  121. ## Reference all interferograms to one common point in space
  122. ## auto - randomly select a pixel with coherence > minCoherence
  123. ## however, manually specify using prior knowledge of the study area is highly recommended
  124. ## with the following guideline (section 4.3 in Yunjun et al., 2019):
  125. ## 1) located in a coherence area, to minimize the decorrelation effect.
  126. ## 2) not affected by strong atmospheric turbulence, i.e. ionospheric streaks
  127. ## 3) close to and with similar elevation as the AOI, to minimize the impact of spatially correlated atmospheric delay
  128. mintpy.reference.yx = auto #[257,151 / auto]
  129. ## 参考点 y,x的坐标
  130. mintpy.reference.lalo = auto #[31.8,130.8 / auto]
  131. ## 参考点经纬度
  132. mintpy.reference.maskFile = auto #[filename / no], auto for maskConnComp.h5
  133. ## 参考点选用的掩码文件
  134. mintpy.reference.coherenceFile = auto #[filename], auto for avgSpatialCoh.h5
  135. ## 参考点使用的相干性文件
  136. mintpy.reference.minCoherence = auto #[0.0-1.0], auto for 0.85, minimum coherence for auto method
  137. ## 自动选择参考点的最小相干性
  138. ########## quick_overview
  139. ## A quick assessment of:
  140. ## 1) possible groud deformation
  141. ## using the velocity from the traditional interferogram stacking
  142. ## reference: Zebker et al. (1997, JGR)
  143. ## 2) distribution of phase unwrapping error
  144. ## from the number of interferogram triplets with non-zero integer ambiguity of closue phase
  145. ## reference: T_int in Yunjun et al. (2019, CAGEO). Related to section 3.2, equation (8-9) and Fig. 3d-e.
  146. ## 这部分不用配置,主要是对可能的地面变形和相位展开误差分布进行快速评估
  147. ########## 4. correct_unwrap_error (optional)
  148. ## connected components (mintpy.load.connCompFile) are required for this step.
  149. ## SNAPHU (Chem & Zebker,2001) is currently the only unwrapper that provides connected components as far as we know.
  150. ## reference: Yunjun et al. (2019, section 3)
  151. ## supported methods:
  152. ## a. phase_closure - suitable for highly redundant network
  153. ## b. bridging - suitable for regions separated by narrow decorrelated features, e.g. rivers, narrow water bodies
  154. ## c. bridging+phase_closure - recommended when there is a small percentage of errors left after bridging
  155. mintpy.unwrapError.method = auto #[bridging / phase_closure / bridging+phase_closure / no], auto for no
  156. ## 展开误差矫正的方法
  157. mintpy.unwrapError.waterMaskFile = auto #[waterMask.h5 / no], auto for waterMask.h5 or no [if not found]
  158. mintpy.unwrapError.connCompMinArea = auto #[1-inf], auto for 2.5e3, discard regions smaller than the min size in pixels
  159. ## phase_closure options:
  160. ## numSample - a region-based strategy is implemented to speedup L1-norm regularized least squares inversion.
  161. ## Instead of inverting every pixel for the integer ambiguity, a common connected component mask is generated,
  162. ## for each common conn. comp., numSample pixels are radomly selected for inversion, and the median value of the results
  163. ## are used for all pixels within this common conn. comp.
  164. mintpy.unwrapError.numSample = auto #[int>1], auto for 100, number of samples to invert for common conn. comp.
  165. ## bridging options:
  166. ## ramp - a phase ramp could be estimated based on the largest reliable region, removed from the entire interferogram
  167. ## before estimating the phase difference between reliable regions and added back after the correction.
  168. ## bridgePtsRadius - half size of the window used to calculate the median value of phase difference
  169. mintpy.unwrapError.ramp = auto #[linear / quadratic], auto for no; recommend linear for L-band data
  170. ## 用于矫正的的相位斜坡类型,L波段推荐linear
  171. mintpy.unwrapError.bridgePtsRadius = auto #[1-inf], auto for 50, half size of the window around end points
  172. ##解缠误差改正是MIntPy的创新点之一,分别为bridging和phase_closure,前者适用于水体分隔区域,如岛屿等,后者适用于高冗余网络。此步骤可选,建议执行。
  173. ########## 5. invert_network
  174. ## Invert network of interferograms into time-series using weighted least square (WLS) estimator.
  175. ## weighting options for least square inversion [fast option available but not best]:
  176. ## a. var - use inverse of covariance as weight (Tough et al., 1995; Guarnieri & Tebaldini, 2008) [recommended]
  177. ## b. fim - use Fisher Information Matrix as weight (Seymour & Cumming, 1994; Samiei-Esfahany et al., 2016).
  178. ## c. coh - use coherence as weight (Perissin & Wang, 2012)
  179. ## d. no - uniform weight (Berardino et al., 2002) [fast]
  180. ## SBAS (Berardino et al., 2002) = minNormVelocity (yes) + weightFunc (no)
  181. mintpy.networkInversion.weightFunc = auto #[var / fim / coh / no], auto for var
  182. ## 最小二乘反演的加权函数
  183. mintpy.networkInversion.waterMaskFile = auto #[filename / no], auto for waterMask.h5 or no [if not found]
  184. mintpy.networkInversion.minNormVelocity = auto #[yes / no], auto for yes, min-norm deformation velocity / phase
  185. ## mask options for unwrapPhase of each interferogram before inversion (recommend if weightFunct=no):
  186. ## a. coherence - mask out pixels with spatial coherence < maskThreshold
  187. ## b. connectComponent - mask out pixels with False/0 value
  188. ## c. no - no masking [recommended].
  189. ## d. range/azimuthOffsetStd - mask out pixels with offset std. dev. > maskThreshold [for offset]
  190. mintpy.networkInversion.maskDataset = auto #[coherence / connectComponent / rangeOffsetStd / azimuthOffsetStd / no], auto for no
  191. mintpy.networkInversion.maskThreshold = auto #[0-inf], auto for 0.4
  192. mintpy.networkInversion.minRedundancy = auto #[1-inf], auto for 1.0, min num_ifgram for every SAR acquisition
  193. ## Temporal coherence is calculated and used to generate the mask as the reliability measure
  194. ## reference: Pepe & Lanari (2006, IEEE-TGRS)
  195. mintpy.networkInversion.minTempCoh = auto #[0.0-1.0], auto for 0.7, min temporal coherence for mask
  196. mintpy.networkInversion.minNumPixel = auto #[int > 1], auto for 100, min number of pixels in mask above
  197. mintpy.networkInversion.shadowMask = auto #[yes / no], auto for yes [if shadowMask is in geometry file] or no.
  198. ## 是否使用阴影掩码
  199. ########## correct_LOD
  200. ## Local Oscillator Drift (LOD) correction (for Envisat only)
  201. ## reference: Marinkovic and Larsen (2013, Proc. LPS)
  202. ## automatically applied to Envisat data (identified via PLATFORM attribute)
  203. ## and skipped for all the other satellites.
  204. ## 本地振荡器漂移校正,仅适用于Envisat数据
  205. ########## 6. correct_SET
  206. ## Solid Earth tides (SET) correction [need to install insarlab/PySolid]
  207. ## reference: Milbert (2018); Yunjun et al. (2022, IEEE-TGRS)
  208. mintpy.solidEarthTides = auto #[yes / no], auto for no
  209. ## 固体地球潮汐校正,需要安装insarlab/PySolid
  210. ########## 7. correct_ionosphere (optional but recommended)
  211. ## correct ionospheric delay [need split spectrum results from ISCE-2 stack processors]
  212. ## reference:
  213. ## ISCE-2 topsApp/topsStack: Liang et al. (2019, IEEE-TGRS)
  214. ## ISCE-2 stripmapApp/stripmapStack: Fattahi et al. (2017, IEEE-TGRS)
  215. ## ISCE-2 alos2App/alosStack: Liang et al. (2018, IEEE-TGRS)
  216. mintpy.ionosphericDelay.method = auto #[split_spectrum / no], auto for no
  217. ## 电离层延迟的方法
  218. mintpy.ionosphericDelay.excludeDate = auto #[20080520,20090817 / no], auto for no
  219. mintpy.ionosphericDelay.excludeDate12 = auto #[20080520_20090817 / no], auto for no
  220. ########## 8. correct_troposphere (optional but recommended)
  221. ## correct tropospheric delay using the following methods:
  222. ## a. height_correlation - correct stratified tropospheric delay (Doin et al., 2009, J Applied Geop)
  223. ## b. pyaps - use Global Atmospheric Models (GAMs) data (Jolivet et al., 2011; 2014)
  224. ## ERA5 - ERA5 from ECMWF [need to install PyAPS from GitHub; recommended and turn ON by default]
  225. ## MERRA - MERRA-2 from NASA [need to install PyAPS from Caltech/EarthDef]
  226. ## NARR - NARR from NOAA [need to install PyAPS from Caltech/EarthDef; recommended for N America]
  227. ## c. gacos - use GACOS with the iterative tropospheric decomposition model (Yu et al., 2018, JGR)
  228. ## need to manually download GACOS products at http://www.gacos.net for all acquisitions before running this step
  229. mintpy.troposphericDelay.method = no #[pyaps / height_correlation / gacos / no], auto for pyaps
  230. ## 对流层延迟校正的方法
  231. ## Notes for pyaps:
  232. ## a. GAM data latency: with the most recent SAR data, there will be GAM data missing, the correction
  233. ## will be applied to dates with GAM data available and skipped for the others.
  234. ## b. WEATHER_DIR: if you define an environment variable named WEATHER_DIR to contain the path to a
  235. ## directory, then MintPy applications will download the GAM files into the indicated directory.
  236. ## MintPy application will look for the GAM files in the directory before downloading a new one to
  237. ## prevent downloading multiple copies if you work with different dataset that cover the same date/time.
  238. mintpy.troposphericDelay.weatherModel = auto #[ERA5 / MERRA / NARR], auto for ERA5
  239. ## 使用pyaps方法,需要指定要使用的全球大气模型
  240. mintpy.troposphericDelay.weatherDir = auto #[path2directory], auto for WEATHER_DIR or "./"
  241. ## 使用pyaps方法,需要指定存储全球大气模型数据的路径
  242. ## Notes for height_correlation:
  243. ## Extra multilooking is applied to estimate the empirical phase/elevation ratio ONLY.
  244. ## For an dataset with 5 by 15 looks, looks=8 will generate phase with (5*8) by (15*8) looks
  245. ## to estimate the empirical parameter; then apply the correction to original phase (with 5 by 15 looks),
  246. ## if the phase/elevation correlation is larger than minCorrelation.
  247. mintpy.troposphericDelay.polyOrder = auto #[1 / 2 / 3], auto for 1
  248. mintpy.troposphericDelay.looks = auto #[1-inf], auto for 8, extra multilooking num
  249. mintpy.troposphericDelay.minCorrelation = auto #[0.0-1.0], auto for 0
  250. ## Notes for gacos:
  251. ## Set the path below to directory that contains the downloaded *.ztd* files
  252. mintpy.troposphericDelay.gacosDir = auto # [path2directory], auto for "./GACOS"
  253. ########## 9. deramp (optional)
  254. ## Estimate and remove a phase ramp for each acquisition based on the reliable pixels.
  255. ## Recommended for localized deformation signals, i.e. volcanic deformation, landslide and land subsidence, etc.
  256. ## NOT recommended for long spatial wavelength deformation signals, i.e. co-, post- and inter-seimic deformation.
  257. mintpy.deramp = linear #[no / linear / quadratic], auto for no - no ramp will be removed
  258. ## 指定去斜坡处理的方法类型
  259. mintpy.deramp.maskFile = auto #[filename / no], auto for maskTempCoh.h5, mask file for ramp estimation
  260. ## 去斜坡处理的掩码文件
  261. ########## 10. correct_topography (optional but recommended)
  262. ## Topographic residual (DEM error) correction
  263. ## reference: Fattahi and Amelung (2013, IEEE-TGRS)
  264. ## stepDate - specify stepDate option if you know there are sudden displacement jump in your area,
  265. ## e.g. volcanic eruption, or earthquake
  266. ## excludeDate - dates excluded for the error estimation
  267. ## pixelwiseGeometry - use pixel-wise geometry (incidence angle & slant range distance)
  268. ## yes - use pixel-wise geometry if they are available [slow; used by default]
  269. ## no - use the mean geometry [fast]
  270. mintpy.topographicResidual = auto #[yes / no], auto for yes
  271. ## 地形残差校正(DEM校正)
  272. mintpy.topographicResidual.polyOrder = auto #[1-inf], auto for 2, poly order of temporal deformation model
  273. mintpy.topographicResidual.phaseVelocity = auto #[yes / no], auto for no - use phase velocity for minimization
  274. mintpy.topographicResidual.stepDate = auto #[20080529,20190704T1733 / no], auto for no, date of step jump
  275. mintpy.topographicResidual.excludeDate = auto #[20070321 / txtFile / no], auto for exclude_date.txt
  276. mintpy.topographicResidual.pixelwiseGeometry = auto #[yes / no], auto for yes, use pixel-wise geometry info
  277. ########## 11.1 residual_RMS (root mean squares for noise evaluation)
  278. ## Calculate the Root Mean Square (RMS) of residual phase time-series for each acquisition
  279. ## reference: Yunjun et al. (2019, section 4.9 and 5.4)
  280. ## To get rid of long spatial wavelength component, a ramp is removed for each acquisition
  281. ## Set optimal reference date to date with min RMS
  282. ## Set exclude dates (outliers) to dates with RMS > cutoff * median RMS (Median Absolute Deviation)
  283. mintpy.residualRMS.maskFile = auto #[file name / no], auto for maskTempCoh.h5, mask for ramp estimation
  284. mintpy.residualRMS.deramp = auto #[quadratic / linear / no], auto for quadratic
  285. ## 计算残差均方根时斜坡的去除类型
  286. mintpy.residualRMS.cutoff = auto #[0.0-inf], auto for 3
  287. ########## 11.2 reference_date
  288. ## Reference all time-series to one date in time
  289. ## reference: Yunjun et al. (2019, section 4.9)
  290. ## no - do not change the default reference date (1st date)
  291. mintpy.reference.date = no #[reference_date.txt / 20090214 / no], auto for reference_date.txt
  292. ## 将所有时间序列参考指定日期
  293. ########## 12. velocity
  294. ## Estimate a suite of time functions [linear velocity by default]
  295. ## from final displacement file (and from tropospheric delay file if exists)
  296. mintpy.timeFunc.startDate = auto #[20070101 / no], auto for no
  297. mintpy.timeFunc.endDate = auto #[20101230 / no], auto for no
  298. mintpy.timeFunc.excludeDate = auto #[exclude_date.txt / 20080520,20090817 / no], auto for exclude_date.txt
  299. ## Fit a suite of time functions
  300. ## reference: Hetland et al. (2012, JGR) equation (2-9)
  301. ## polynomial function is defined by its degree in integer. 1 for linear, 2 for quadratic, etc.
  302. ## periodic function(s) are defined by a list of periods in decimal years. 1 for annual, 0.5 for semi-annual, etc.
  303. ## step function(s) are defined by a list of onset times in str in YYYYMMDD(THHMM) format
  304. ## exp & log function(s) are defined by an onset time followed by an charateristic time in integer days.
  305. ## Multiple exp and log functions can be overlaied on top of each other, achieved via e.g.:
  306. ## 20110311,60,120 - two functions sharing the same onset time OR
  307. ## 20110311,60;20170908,120 - separated by ";"
  308. mintpy.timeFunc.polynomial = auto #[int >= 0], auto for 1, degree of the polynomial function
  309. mintpy.timeFunc.periodic = auto #[1,0.5 / list_of_float / no], auto for no, periods in decimal years
  310. mintpy.timeFunc.stepDate = auto #[20110311,20170908 / 20120928T1733 / no], auto for no, step function(s)
  311. mintpy.timeFunc.exp = auto #[20110311,60 / 20110311,60,120 / 20110311,60;20170908,120 / no], auto for no
  312. mintpy.timeFunc.log = auto #[20110311,60 / 20110311,60,120 / 20110311,60;20170908,120 / no], auto for no
  313. ## Uncertainty quantification methods:
  314. ## a. residue - propagate from fitting residue assuming normal dist. in time (Fattahi & Amelung, 2015, JGR)
  315. ## b. covariance - propagate from time series (co)variance matrix
  316. ## c. bootstrap - bootstrapping (independently resampling with replacement; Efron & Tibshirani, 1986, Stat. Sci.)
  317. mintpy.timeFunc.uncertaintyQuantification = auto #[residue, covariance, bootstrap], auto for residue
  318. mintpy.timeFunc.timeSeriesCovFile = auto #[filename / no], auto for no, time series covariance file
  319. mintpy.timeFunc.bootstrapCount = auto #[int>1], auto for 400, number of iterations for bootstrapping
  320. ########## 13.1 geocode (post-processing)
  321. # for input dataset in radar coordinates only
  322. # commonly used resolution in meters and in degrees (on equator)
  323. # 100, 90, 60, 50, 40, 30, 20, 10
  324. # 0.000925926, 0.000833334, 0.000555556, 0.000462963, 0.000370370, 0.000277778, 0.000185185, 0.000092593
  325. mintpy.geocode = auto #[yes / no], auto for yes
  326. ## 是否进行地理编码
  327. mintpy.geocode.SNWE = auto #[-1.2,0.5,-92,-91 / none ], auto for none, output extent in degree
  328. ## 输出地理范围(经纬度)
  329. mintpy.geocode.laloStep = auto #[-0.000555556,0.000555556 / None], auto for None, output resolution in degree
  330. ## 输出分辨率
  331. mintpy.geocode.interpMethod = auto #[nearest], auto for nearest, interpolation method
  332. ## 地理编码差值方法
  333. mintpy.geocode.fillValue = auto #[np.nan, 0, ...], auto for np.nan, fill value for outliers.
  334. ## 异常值填充值
  335. ########## 13.2 google_earth (post-processing)
  336. mintpy.save.kmz = auto #[yes / no], auto for yes, save geocoded velocity to Google Earth KMZ file
  337. ## 是否将地理编码后的速度保存到谷歌地球的KMZ文件
  338. ########## 13.3 hdfeos5 (post-processing)
  339. mintpy.save.hdfEos5 = auto #[yes / no], auto for no, save time-series to HDF-EOS5 format
  340. ## 是否将时间序列保存到HD5格式
  341. mintpy.save.hdfEos5.update = auto #[yes / no], auto for no, put XXXXXXXX as endDate in output filename
  342. mintpy.save.hdfEos5.subset = auto #[yes / no], auto for no, put subset range info in output filename
  343. ########## 13.4 plot
  344. # for high-resolution plotting, increase mintpy.plot.maxMemory
  345. # for fast plotting with more parallelization, decrease mintpy.plot.maxMemory
  346. mintpy.plot = auto #[yes / no], auto for yes, plot files generated by default processing to pic folder
  347. mintpy.plot.dpi = auto #[int], auto for 150, number of dots per inch (DPI)
  348. mintpy.plot.maxMemory = 16 #[float], auto for 4, max memory used by one call of view.py for plotting.

SBAS流程实现

Berardino 等 (2002) 提出的 SBAS 技术用于获得时间序列形变值,原文链接: A new algorithm for surface deformation monitoring based on small baseline differential SAR interferograms | IEEE Journals & Magazine | IEEE Xplore
SBSA技术流程为:

1.配准

SAR单视复数影像的配准主要分为两个步骤: 粗配准和精配准。

(1)粗配准:通常选取参考影像的中心点作为参考点由于参考影像中心点在副影像上有唯一对应点,进而利用参考影像和副影像的卫星轨道参数及 InSAR 成像几何求得参考影像中心点在副影像中的对应点,并把它们作为配准的同名点对。

(2)精配准:是在粗配准基础上, 通过同名点坐标或其偏移量建立参考影像到副影像的坐标映射关系, 再利用这个关系对副影像进行坐标变换、 影像插值和重采样。精配准的方法有:相干系数阈值法、 最大频谱法和相位差影像平均波动函数法。

2.干涉图生成

两景配准后每一点数据为:

则干涉值为:

uint 的相位数据是每一同名点上相应于两个观测点 的相位差:

Im ( u int ) 和 Re ( u int ) 分别为 u int 虚部和实部

3.干涉图滤波

        干涉影像的噪声来源主要有时间/空间基线失相干、 热噪声、 数据处理误差 等, 为了减小噪声对后续解缠的影响,需采取滤波的方法对干涉影像进行处理, 

        针对干涉 SAR 影像中随机噪声的特性,将抑制噪声的方法大体分为两类: 空间域滤波和频率域滤波。

空间域滤波方法主要有: 条纹自适应滤波方法、 多视滤波方法和矢量滤波方法等。

频率域滤波方法主要有: 自适应滤波 (Goldstein 滤 波) 方法、 频谱加权滤波方法、 小波滤波方法等。

4.相位解缠

        给定同一地区的两景 SAR 影像, 经过配准之后,对应像元进行共轭相乘得 到相位差, 并形成干涉图, 但是从干涉图中得到的相位差实际上是主值,即在 ( -π,π)呈周期性变化,为了还原其真实的相位差,必须在主值的基础上加或 减整数倍的相位周期2π,把被卷叠的相位展开,才能顺利地反演出地面目标的高程和形变。

常用的解缠方法(二维相位解缠):

1.Goldstein 枝切法相位解缠

2.最小二乘法相位解缠

3.网络费用流相位解缠

5.地理编码

        将雷达坐标系下的原始数据通过一定的几何校正方法消除由轨道、 传感器、 地球模型引起的扭曲和畸变,然后变换到某种制图参考系 (地图投影) 中以便于人们对获取的地理信息进行理解和判读,这一过程被称为 SAR 影像的地理编码。

        地理编码:影像行列坐标(l,p)->零多普勒时间系统->以地球为原点的三维笛卡尔坐标系(X,Y,Z).

ICA分解

主要参考

1.原文:Independent Component Analysis: A Tutorial Introduction | MIT Press eBooks | IEEE Xplore

2.独立分量分析(Independent Component Analysis) - 知乎

3.独立成分分析(Independent Component Analysis) - 知乎

4.学习笔记 | 独立成分分析(ICA, FastICA)及应用-CSDN博客

5.独立成分分析(ICA)模型推导与代码实践_哔哩哔哩_bilibili

6.独立成分分析FastICA算法原理 - 知乎

代码实现思路

1.读取数据信息

(1)地理变换信息

栅格行列数、像素大小以及旋转信息,以便为独立成分的生成提供相同信息。

(2)投影信息

2.缺失值处理

使用本行均值填充

3.FastICA

影像数组长这样

    

注:本文转载自blog.csdn.net的Love-my的文章"https://blog.csdn.net/Cyy2511250589/article/details/145191531"。版权归原作者所有,此博客不拥有其著作权,亦不承担相应法律责任。如有侵权,请联系我们删除。
复制链接
复制链接
相关推荐
发表评论
登录后才能发表评论和回复 注册

/ 登录

评论记录:

未查询到任何数据!
回复评论:

分类栏目

后端 (14832) 前端 (14280) 移动开发 (3760) 编程语言 (3851) Java (3904) Python (3298) 人工智能 (10119) AIGC (2810) 大数据 (3499) 数据库 (3945) 数据结构与算法 (3757) 音视频 (2669) 云原生 (3145) 云平台 (2965) 前沿技术 (2993) 开源 (2160) 小程序 (2860) 运维 (2533) 服务器 (2698) 操作系统 (2325) 硬件开发 (2492) 嵌入式 (2955) 微软技术 (2769) 软件工程 (2056) 测试 (2865) 网络空间安全 (2948) 网络与通信 (2797) 用户体验设计 (2592) 学习和成长 (2593) 搜索 (2744) 开发工具 (7108) 游戏 (2829) HarmonyOS (2935) 区块链 (2782) 数学 (3112) 3C硬件 (2759) 资讯 (2909) Android (4709) iOS (1850) 代码人生 (3043) 阅读 (2841)

热门文章

134
游戏
关于我们 隐私政策 免责声明 联系我们
Copyright © 2020-2025 蚁人论坛 (iYenn.com) All Rights Reserved.
Scroll to Top