1 简介
采用SplitBregman优化算法的TV模型中图像去噪性能.
2 部分代码
%% This file demonstrates the Split Bregman method for Total Variation denoisingclc; clear all;close all;N = 512; n = N^2;f = double(imread('Lena512','png'));g = f(:) + 0.09*max(f(:))*randn(n,1);mu = 20;g_denoise_atv = SB_ATV(g,mu);g_denoise_itv = SB_ITV(g,mu);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(g,N,N)); axis image; title('Noisy');subplot(223); imagesc(reshape(g_denoise_atv,N,N)); axis image; title('Anisotropic TV denoising');subplot(224); imagesc(reshape(g_denoise_itv,N,N)); axis image; title('Isotropic TV denoising');
3 仿真结果
4 参考文献
[1]陈育群, 陈颖频, 林凡,等. 一种快速交叠组合稀疏全变分图像去噪方法[J]. 闽南师范大学学报:自然科学版, 2019, 32(3):6.
博主简介:擅长智能优化算法、神经网络预测、信号处理、元胞自动机、图像处理、路径规划、无人机等多种领域的Matlab仿真,相关matlab代码问题可私信交流。
部分理论引用网络文献,若有侵权联系博主删除。