资源简介
把分裂Bregman方法运用到图像处理中,这种方法比以前去模糊方法要好很多。
代码片段和文件信息
% test_mrics.m by Tom Goldstein (tagoldst@math.ucla.edu)
% This file is meant to demonstrate how to properly use mrics.m
% When this script is run it will first build a simple test image. The
% method then builds a sampling matrix R with entries randomly chosen
% to be 1 or 0. The compressed sensing data is then computed using the
% folrmula F = R.*fft2(image). Gaussian noisy is added to the CS data.
% Finally the mrics method is used to reconstruct the image form the
% sub-sampled K-Space data.
N = 128; % The image will be NxN
sparsity = .25; % use only 30% on the K-Space data for CS
% build an image of a square
image = zeros(NN);
image(N/4:3*N/4N/4:3*N/4)=255;
% build the sampling matrix R
R = rand(NN);
R = R
% Form the CS data
F = R.*fft2(image);
% Recover the image
recovered = mrics(RF 1 1 1e-510 4);
% build a figure to display results
figure;
subplot(221);
imagesc(abs(image)); colormap(‘gray‘);
title(‘Original‘);
subplot(222);
imagesc(abs(R)); colormap(‘gray‘);
title(‘R‘);
subplot(223);
imagesc(abs(ifft2(F))); colormap(‘gray‘);
title(‘Set unknown to 0‘);
subplot(224);
imagesc(abs(recovered)); colormap(‘gray‘);
title(‘Split Bregman Recovery‘);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 4463 2008-12-08 16:18 Split Bregman\yuan.m
文件 1241 2008-08-09 13:38 Split Bregman\split.m
- 上一篇:FOC_PMSM
- 下一篇:MATLAB图像去雾处理
相关资源
- 基于Matlab的最大熵模糊图像复原算法
- KITTI雷达点云与图像数据融合matlab源码
- matlab 解码 NMEA0183格式GGA数据
- 一个有关飞机的模板匹配的跟踪的m
- 基于MATLAB的电弧模型仿真
- PRI信号分选
- Matlab论文:基于Matlab的二进制数字调
- 802.11协议吞吐量随节点数性能仿真
- matlab图片rgb转yuv,存.yuv文件 播放器
- Duda模式分类Pattern Classification MATLAB 代
- dijkstra算法的matlab实现31274
- 随机路径生成函数matlab
- matlab语音信号处理工具箱
- matlab2013激活文件
- matlab实现游程编码
- 暗通道先验+引导滤波MATLAB代码
- 边缘检测中的canny算法及其matlab实现
- 通过达曼光栅生成点阵的matlab程序.
- MATLAB核函数算法
- 求控制系统的性能指标MptrtsFAI,matl
- matlab 求DTFT
- 逆变器重复控制算法MATLAB仿真
- MATLAB R2014b 许可协议文件
- matlab读取comtrade格式的程序
- 基于Matlab的RC一阶电路仿真
- Las点云数据读取代码
- 雷达回波加天线方向图模拟程序
- MATLAB 2017b 安装文件及其破解文件百度
- Matlab实现音频降噪
- matlab实现导航卫星系统中计算多普勒
评论
共有 条评论