• 大小: 153KB
    文件类型: .zip
    金币: 2
    下载: 1 次
    发布日期: 2021-12-18
  • 语言: 其他
  • 标签: matlab  

资源简介

偏微分图像去噪中的经典算法分裂Bregman算法的源代码

资源截图

代码片段和文件信息

%---------------------------------------------%
%       %
%          工作室提供代做matlab仿真       %
%       %
%  详情请访问:http://cn.mikecrm.com/5k6v1DP  %
%       %
%---------------------------------------------%


clc; clear all;
close all;

N = 512; n = N^2;
f = double(imread(‘Lena512‘‘png‘));
g = f(:) + 0.09*max(f(:))*randn(n1);

mu = 20;

g_denoise_atv = SB_ATV(gmu);
g_denoise_itv = SB_ITV(gmu);

fprintf(‘ATV Rel.Err = %g\n‘norm(g_denoise_atv(:) - f(:)) / norm(f(:)));
fprintf(‘ITV Rel.Err = %g\n‘norm(g_denoise_itv(:) - f(:)) / norm(f(:)));

figure; colormap gray;
subplot(221); imagesc(f); axis image; title(‘Original‘);
subplot(222); imagesc(reshape(gNN)); axis image; title(‘Noisy‘);
subplot(223); imagesc(reshape(g_denoise_atvNN)); axis image; 
title(‘Anisotropic TV denoising‘);
subplot(224); imagesc(reshape(g_denoise_itvNN)); axis image; 
title(‘Isotropic TV denoising‘);

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2019-05-09 15:26  偏微分图像去噪中的经典算法分裂Bregman算法的源代码1\
     文件      153785  2011-02-03 12:24  偏微分图像去噪中的经典算法分裂Bregman算法的源代码1\Lena512.png
     文件         932  2019-05-09 15:25  偏微分图像去噪中的经典算法分裂Bregman算法的源代码1\main_denoising.m
     文件        1103  2019-05-09 15:25  偏微分图像去噪中的经典算法分裂Bregman算法的源代码1\SB_ATV.m
     文件        1110  2019-05-09 15:25  偏微分图像去噪中的经典算法分裂Bregman算法的源代码1\SB_ITV.m

评论

共有 条评论