资源简介
用于压缩感知图像处理的matlab代码 包括CoSaMP,GBP,IHT,OMP,BP,SP等算法的代码
代码片段和文件信息
function Demo_CS_CoSaMP()
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% the DCT basis is selected as the sparse representation dictionary
% instead of seting the whole image as a vector I process the image in the
% fashion of column-by-column so as to reduce the complexity.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%------------ read in the image --------------
img=imread(‘lena.bmp‘); % testing image
img=double(img);
[heightwidth]=size(img);
%------------ form the measurement matrix and base matrix ---------------
Phi=randn(floor(height/3)width); % only keep one third of the original data
Phi = Phi./repmat(sqrt(sum(Phi.^21))[floor(height/3)1]); % normalize each column
mat_dct_1d=zeros(256
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3209 2012-11-21 15:21 software\Demo_CS_CoSaMP.m
文件 8278 2010-07-15 10:02 software\Demo_CS_GBP.m
文件 2898 2012-11-15 14:31 software\Demo_CS_IHT.m
文件 2877 2012-11-15 14:31 software\Demo_CS_IRLS.m
文件 3340 2010-07-16 14:47 software\Demo_CS_OMP.m
文件 3434 2010-07-15 10:03 software\Demo_CS_SP.m
文件 66614 2010-05-11 20:29 software\lena.bmp
目录 0 2012-01-08 12:32 software
----------- --------- ---------- ----- ----
90650 8
相关资源
- MATLAB_image_process_with_PDE 运用偏微分方
- 数字图像处理matlab版源码
- romp 图像处理
- txlb 数字图像处理中的滤波和傅里叶压
- ImageMatlab Matlab数字图像处理
- 111 去雾处理
- gabor-pca 本程序是先用gabor小波变换对
- matlab 本文重点研究了面积法对车流量
- CS 压缩感知代码
- MATLAB 冈萨雷斯数字图像处理MATLAB版
- Images 图像处理中常用的的标准图像
- souce-code 数字图像处理与机器视觉(光
- tuxianggongcheng 清华大学章毓敏写的图像
- Matlab-edge-detection-operator
- MATLAB 数字图像处理图像复原算法源代
- Inpainting--on-Wavelet- 图像修复是图像处
- hough-circle 读入图像
- Pattern-Classification 此文档包含对卷积神
- correlationmatlabcode 用于图像处理上的像
- image-processing 用于图像处理上的相邻像
- recall_precision 图像处理的查准率和查全
- MATLAB-image-processing 很详细的介绍了图
- images 数字图像处理的非常面全的图片
- HDR_Toolbox_current 应用Matlab写的HDR图像处
- KSVD_Matlab_ToolBox 数字图像处理
- jiangcaiyang 对图像进行降采样处理
- huffman 数字图像处理中的编码技术。本
- rgb2hsi--hsi2rgb 彩色图像处理 格式转化
- rhbz 图像融合指标
- matlabronghe 基于压缩感知与小波变换的
评论
共有 条评论