资源简介
将Radarsat2极化SAR图像数据转换为散射矩阵及相干矩阵T3的matlab代码,附上的图像文件是用Enviview软件截取转存的各通道实部虚部文件,以及lutsigma.xml查找表文件.作者辛苦所做,希望对SAR初学者有所帮助.
代码片段和文件信息
%将envi中提取出的数据文件转入matlab,各通道均带有实部虚部,返回值为四通道复数
function [hhhvvhvv]=convert()
hh=tif2dat(‘HH‘);
hv=tif2dat(‘HV‘);
vh=tif2dat(‘VH‘);
vv=tif2dat(‘VV‘);
function dat=tif2dat(poltype)
pre=‘imagery_‘;
real=‘_1.tif‘;
imag=‘_2.tif‘;
realfile=[pre poltype real];
imagfile=[pre poltype imag];
X=imread(realfile);
Y=imread(imagfile);
xf=double(X);
yf=double(Y);
dat=xf+i*yf;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 193 2010-09-22 15:45 readsigma.m
文件 1186 2010-09-22 17:27 scattermt3.m
文件 323410 2009-08-06 21:56 imagery_HH_1.tif
文件 323410 2009-08-06 21:57 imagery_HH_2.tif
文件 323410 2009-08-06 21:57 imagery_HV_1.tif
文件 323410 2009-08-06 21:58 imagery_HV_2.tif
文件 323410 2009-08-06 21:58 imagery_VH_1.tif
文件 323410 2009-08-06 21:59 imagery_VH_2.tif
文件 323410 2009-08-06 21:59 imagery_VV_1.tif
文件 323410 2009-08-06 22:00 imagery_VV_2.tif
文件 27791 2008-04-15 17:33 lutSigma.xm
文件 2170948 2009-08-10 01:07 p9dat.mat
文件 413 2010-09-23 21:57 convert.m
----------- --------- ---------- ----- ----
4787811 13
相关资源
- 合成孔径雷达成像csChirp Scaling算法M
- matlab开发-GMRESArnoldi
- Mie matlab
- polsarpro,matlab、Pauli、Yamaguchi、Cloud
- ISARImagingWithMATLABAlgorithms.rar
- ISAR Imaging With MATLAB Algorithms
- SAR目标仿真平台 点目标仿真
- SAR面目标回波仿真matlab程序
- 非常好的球粒子Mie散射matlab仿真
- 干涉相位滤波均值、中值、圆周期.
- Autosar支持包.rar
- SAR-Signal-Processing-with-Matlab
- 基于AUTOSAR规范的车用电机控制器软件
- ISAR雷达成像
- sar-pga
- 美国原版:逆合成孔径雷达matlab算法
- Matlab+cpp三维矩量法MoM通用计算程序
- insar图像配准及滤波
- SAR成像算法小matlab
- A Low-Power Radar Imaging System
- SAR面目标成像
- Synthetic Aperture Radar Signal Processing wit
- SAR图像集合
- SAR signal processing with MATLAB 书籍 对应代
- synthetic aperture radar signal processing wit
- Inverse Synthetic Aperture Radar Imaging with
- SAR图像分类识别(matlab)
- SAR图像分类识别
- Synthetic Aperture Radar Signal Processing wit
- BP成像算法
评论
共有 条评论