资源简介
压缩感知去噪代码,一种用于去噪的CS的有效代码,简单适用
)
代码片段和文件信息
function ResIm = Image_Denoising_Global_Denoising(Im trueIm)
% Denoise image by denoising its patches using a pre-determined dictionary.
% Patches are denoised WITHOUT overlap.
%
% Inputs :
% Im : image to denoise double [0 255]
% trueIm : This is used (unfairly) to optimize the parameters for the algorithm
%
% Outputs :
% ResIm : Result Image for the best parameter
%% Parameters
imLen = numel(Im);
%% Create the dictionary - Haar
[HaarDict atomNorms] = Generate_Haar_Matrix(size(Im) 2);
atomNorms = atomNorms(:);
invAtomNorms = 1 ./ atomNorms;
% Show_Haar_Dict(HaarDict size(Im));
nAtoms = size(HaarDict 2); % = 1 + 3 * nLevels
%% Prepare the projections of the image onto the dictionary
projs = HaarDict‘ * Im(:);
absProjs = abs(projs);
%% Test
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 4939 2011-06-16 08:57 压缩感知去噪代码.m
----------- --------- ---------- ----- ----
4939 1
相关资源
- romp 图像处理
- OMP 小波变换和压缩感知中的OMP算法比
- daopin 将压缩感知应用于基于训练序列
- CS 关于压缩感知重构算法
- CS-OMP-wavelet-reconstruction
- Professor-Lu-Wusheng-lecture 陆吾生教授是加
- Cooperative-spectrum-sensing
- img_bp 图像信号的压缩感知重构算法
- fastlaplacemorian 压缩感知的几种算法算
- CS_recovery_algorithms 压缩感知常见算法参
- CS 压缩感知代码
- CSBP_matlab 用于压缩感知的基追踪(B
- Cooperative-Spectrum-Sensing-
- DeNoising 压缩感知重构算法去噪方法
- Compressive_Sensing 压缩感知图像融合算法
- OMP 这里主要是压缩感知的贪婪算法
- luwusheng 陆吾生教授的压缩感知材料
- fusion
- Wavelet_IRLS 压缩感知CS——采用小波变
- CS-BP 压缩感知重构经典算法-BP算法
- cyclostationary-spectrum-sensing 认知无线电
- CT_code_v0 2012年的压缩感知跟踪算法
- compressed-sensing 压缩感知
- cs-code 压缩感知的代码
- L1OMPsnr 基于压缩感知的DOA估计
- CA_DOA 用matlab编写的压缩感知DOA
-
CS-ba
sed-on-FFT-or-DWT 图像压缩感知 - L1_SVD 利用压缩感知实现波达方向估计
- cs_matlab 几种基本的压缩感知(CS)重
- Wireless-CS 简单的压缩感知用于无线传
评论
共有 条评论