资源简介
理由matlab语言读取极化PolSARpro中生成的S2复数据,并可输出为2波段的Tiff数据。
代码片段和文件信息
function [S2] =gxm_read_matlab_s2( FilePathheightwidth )
% Read the Matlab format S2 complex file S=[height2*width]
% S = [real imag];
%
% FilePath : path of data
% height : rows of data
% width :column of data
% S2 : 4-dims[S11 S12 S21 S22]
% Author : gengxm0120@163.com from WuHan University
% Date : 2018/7/17
disp(‘Start to Read The Matlab Format S2 !‘);
%% Create the S Array
S11 = complex(rand(heightwidth)rand(heightwidth));
S12 = complex(rand(heightwidth)rand(heightwidth));
S21 = complex(rand(heightwidth)rand(heightwidth));
S22 = complex(rand(heightwidth)rand(heightwidth));
if isdir(fullfile(FilePath‘S2‘))
delete(fullfile(FilePath‘S2‘‘\*.tif‘));
end
mkdir(fullfile(FilePath‘S2‘));
%% Read the S11
- 上一篇:畸变图形矫正matlab 源码
- 下一篇:IFCBrowser(IFC文件浏览器)
相关资源
- MatlabSerialCommunication 本文介绍MATLAB环境
- fusion_change_detection SAR图像变化检测代
- LVRclass21
- gaoanfis2 模糊自适应神经网络(ANFIS)
- Radarsat2 将Radarsat2极化SAR图像数据转换
- Xieshi2 SAR回波的仿真程序
- SAR_Clutter SAR杂波统计建模方面的源程
- harris2807740
- sar-denoising sar图像去噪的几种新的方法
- SAR-RDA-Algorithm SAR成像中的RD算法是最经
- sar2788155
- SAR
- KSVD-for-SAR_LOG 用基于稀疏表示和KSVD字
- SAR 基于模糊贴近度的SAR图像变化检测
- ISAR-Imaging-With-MATLAB-Algorithms 这本书提
- NS210 GPS信号捕获程序
-
MRF-ba
sed-image-segmentation 基于马尔科夫 - cfar 恒虚警算法matlab程序
- isar_code_new ISAR点目标RD成像算法
- sar-edge-detection sar 图像边缘检测算子
- INSARjiechanchao INSAR相位解缠绕程序
- freeman 一个极化SAR处理过程中freeman分
- ISARchengxiangfangzhen 设定雷达和目标参数
- ISAR-Matlab ISAR成像的最实用教材
- BP SAR成像BP算法
- N_wKA_new SAR成像的wk算法
- MRF-SAR-segment
- matlabmylib sinc插值函数
- RDA_single_point_imaging 对机载SAR系统点目
- ROAPROEWA-algorithm 最为经典的ROA和ROEWA算
评论
共有 条评论