资源简介
自己写的SAR相干斑去噪matlab代码
包括:小波去噪,contourlet变换去噪,小波-contourlet去噪,基于PCA的小波-contourlet去噪
代码片段和文件信息
function y = backsamp(y)
% BACKSAMP Backsampling the subband images of the directional filter bank
%
% y = backsamp(y)
%
% Input and output are cell vector of dyadic length
%
% This function is called at the end of the DFBDEC to obtain subband images
% with overall sampling as diagonal matrices
%
% See also: DFBDEC
% Number of decomposition tree levels
n = log2(length(y));
if (n ~= round(n)) | (n < 1)
error(‘Input must be a cell vector of dyadic length‘);
end
if n == 1
% One level the decomposition filterbank shoud be Q1r
% Undo the last resampling (Q1r = R2 * D1 * R3)
for k = 1:2
y{k} = resamp(y{k} 4);
y{k}(: 1:2:end) = resamp(y{k}(: 1:2:end) 1);
y{k}(: 2:2:end) = resamp(y{k}(: 2:2:end) 1);
end
elseif n > 2
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2016-12-19 14:37 SAR-denosing-sj\
文件 1119 2016-12-17 15:14 SAR-denosing-sj\backsamp.m
文件 66616 2012-05-04 10:05 SAR-denosing-sj\BJ256_N_5.bmp
文件 487 2016-12-18 21:17 SAR-denosing-sj\covriance.m
文件 5884 2016-12-19 14:37 SAR-denosing-sj\denoising.m
文件 1768 2016-12-16 23:39 SAR-denosing-sj\dfbdec_l.m
文件 2012 2016-12-17 15:31 SAR-denosing-sj\dfbrec.m
文件 1736 2016-12-17 15:32 SAR-denosing-sj\dfbrec_l.m
文件 755 2016-12-17 15:37 SAR-denosing-sj\dup.m
文件 1861 2016-12-17 15:08 SAR-denosing-sj\extend2.m
文件 1507 2016-12-17 15:08 SAR-denosing-sj\fbdec_l.m
文件 1426 2016-12-17 15:34 SAR-denosing-sj\fbrec_l.m
文件 662 2016-12-16 23:09 SAR-denosing-sj\ldfilter.m
文件 722 2016-12-17 15:06 SAR-denosing-sj\lpdec.m
文件 935 2016-12-17 15:36 SAR-denosing-sj\lprec.m
文件 1254 2016-12-16 23:15 SAR-denosing-sj\pdfb2vec.m
文件 2671 2016-12-16 23:04 SAR-denosing-sj\pdfbdec.m
文件 1486 2016-12-16 23:20 SAR-denosing-sj\pdfbrec.m
文件 931 2016-12-17 15:17 SAR-denosing-sj\pdfb_nest.m
文件 2230 2016-12-18 00:24 SAR-denosing-sj\pdfb_nest1.m
文件 1667 2016-12-16 23:08 SAR-denosing-sj\pfilters.m
文件 1374 2016-12-17 15:13 SAR-denosing-sj\ppdec.m
文件 1497 2016-12-17 15:35 SAR-denosing-sj\pprec.m
文件 459 2016-12-11 22:50 SAR-denosing-sj\PSNR.m
文件 1490 2016-12-17 15:09 SAR-denosing-sj\qpdec.m
文件 1656 2016-12-17 15:36 SAR-denosing-sj\qprec.m
文件 1172 2016-12-17 15:32 SAR-denosing-sj\rebacksamp.m
文件 1268 2016-12-17 15:09 SAR-denosing-sj\resamp.m
文件 2255 2016-12-17 15:10 SAR-denosing-sj\resampc.c
文件 7168 2016-12-17 15:10 SAR-denosing-sj\resampc.dll
文件 9216 2016-12-17 15:13 SAR-denosing-sj\resampc.mexw64
............此处省略4个文件信息
相关资源
- EWT 经验小波分解
- 验模态小波变换工具
- SAR-GMTI 星座SAR动目标检测
- iran-sar-image insar图像数据
- 提取图像中河流和道路 Line-detection
- 基于小波的VMD程序
- 一整套基于小波变换的的图像融合算
- RDA_point RD算法实现
- 小波变换去除脉搏波基线漂移算法
- dwt_ihs_fusion 基于离散小波变换和IHS变
- MATLAB小波分析与应用 30个案例分析
- DTCWT 适合进行图像压缩
- 三正弦叠加高斯白噪声信号源进行频
- SAR图像的去噪
- 使用经验模态分解 (emd) 对imf进行分
- Gabor Gabor小波变换的matlab实现
- wnn 一个用小波神经网络进行非线性函
- fusion_change_detection SAR图像变化检测代
- imagefusion2836201
- OMP 小波变换和压缩感知中的OMP算法比
- Gaborpca Gabor小波变换与PCA的人脸识别代
- face 收集的最全的人脸识别代码 有小
- Gabor Gabor滤波器
- lena 灰图像三级小波分解
- edge_detection 利用小波边缘检测算法实
- Wavelet_denoising 小波变换的MATLAB源程序
-
thresholddenoisingba
sedonwavelet 小波阈值 - SIGNAL_edge_dwt 利用小波变换模极大值方
- Radarsat2 将Radarsat2极化SAR图像数据转换
- Xieshi2 SAR回波的仿真程序
评论
共有 条评论