资源简介
matlab实现的稀疏表示的遥感图像融合
代码片段和文件信息
close all
% n is the original signal length
n = 2^12;
% k is number of observations to make
k = 2^10;
% number of spikes to put down
% n_spikes = floor(.01*n);
n_spikes = 160;
% random +/- 1 signal
f = zeros(n1);
q = randperm(n);
f(q(1:n_spikes)) = sign(randn(n_spikes1));
%f(q(1:n_spikes)) = randn(n_spikes1);
% measurement matrix
disp(‘Creating measurement matrix...‘);
R = randn(kn);
% orthonormalize rows
R = orth(R‘)‘;
if n == 8192
% in this case we load a precomputed
% matrix to save some time
load Rmatrix_2048_8192.mat
end
%
disp(‘Finished creating matrix‘);
hR = @(x) R*x;
hRt = @(x) R‘*x;
% noisy observations
sigma = 0;
y = hR(f) + sigma*randn(k1);
% regularization parameter
tau = 0.005*max(abs(R‘*y));
first_tau_factor = 0.8*(max(abs(R‘*y))/tau);
steps = 5
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 6148 2007-12-04 11:46 GPSR_5.0\.DS_Store
文件 65126 2007-01-25 13:54 GPSR_5.0\Camera.tif
文件 7046 2007-09-23 20:49 GPSR_5.0\demo_continuation.m
文件 5849 2007-07-13 16:40 GPSR_5.0\demo_image_deblur.m
文件 8489 2007-10-19 16:40 GPSR_5.0\figures_1_2_3.m
文件 5225 2007-09-12 18:21 GPSR_5.0\figure_4.m
文件 5276 2007-12-04 11:46 GPSR_5.0\figure_5.m
文件 2377 2007-07-12 18:41 GPSR_5.0\figure_6.m
文件 21851 2007-12-04 11:26 GPSR_5.0\GPSR_Basic.m
文件 21647 2007-12-04 11:08 GPSR_5.0\GPSR_BB.m
文件 12630 2007-09-06 15:10 GPSR_5.0\IST.m
文件 8569 2007-06-16 15:41 GPSR_5.0\l1_ls.m
文件 3178 2007-12-05 19:06 GPSR_5.0\README.txt
目录 0 2015-12-18 18:51 GPSR_5.0
----------- --------- ---------- ----- ----
173411 14
相关资源
- CompressiveAndApplications 《压缩感知与应
- KSVD-ToolBox KSVD稀疏表示的matlab代码
- RVM2 基于稀疏贝叶斯框架的机器学习算
- 一整套基于小波变换的的图像融合算
- 采用稀疏表示的图像融合方法
- dwt_ihs_fusion 基于离散小波变换和IHS变
- 用于红外、可见光的图像融合
- 压缩传感重构算法(DCT-OMP)
- MIMO_SparseChannel 多发多收的稀疏信道估
- 信号稀疏表示
- matlab代码实现的稀疏自编码器
- sparse_representation 最热门的稀疏表示的
- SRC
- CVPR09-ScSPM 基于空间金字塔匹配的稀疏
- CVPR09-ScSPM
- tuxiangronghe :介绍了基于小波变换的图
- KSVD 图像稀疏编码的方法
- contourlet_toolbox 基于非下采样contourle
- SFLCT_SML_fusion
- wavelet-matlab 基于小波变换的图像融合
- contourlet 基于contourlet的图像融合利用
- PCA 基于PCA的遥感图像融合
- SR 利用稀疏矩阵思想进行图像的超分
- k_svd k-svd算法m代码.用于形成冗余字典
- NSCTPHSI 基于NSCT与HSI的图像融合算法
-
ob
ject-Recognition-via-Sparse-PCA 利用稀疏 - FaceRecogTool 基于稀疏表示的人脸识别系
- KSVD-for-SAR_LOG 用基于稀疏表示和KSVD字
- Shearletimagefusion shearlet图像融合的源代
- Contourlet contourlet图像融合的matlab源代
评论
共有 条评论