• 大小: 3KB
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-01-02
  • 语言: Matlab
  • 标签: SAR  S2  

资源简介

理由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

评论

共有 条评论