【圖像去噪】基于高通、低通、帶通、方向多種濾波器實現(xiàn)圖像去噪含Matlab源碼
1 簡介
圖像在采集和傳輸過程中可能受到很多外界條件的污染,因此,為了保證圖像提供給我們的信息比較準(zhǔn)確,需要對圖像進(jìn)行去噪處理.通過Matlab軟件分別用高通、低通、帶通、方向多種濾波器對需要的圖像進(jìn)行去噪處理,同時比較幾種去噪方法的優(yōu)缺點,找到對圖像質(zhì)量影響最小,且去噪性能最好的方法.
2 部分代碼
function PQ = paddedsize(AB, CD, PARAM)
%PADDEDSIZE Computes padded sizes useful for FFT-based filtering.
% ? PQ = PADDEDSIZE(AB), where AB is a two-element size vector,
% ? computes the two-element size vector PQ = 2*AB.
%
% ? PQ = PADDEDSIZE(AB, 'PWR2') computes the vector PQ such that
% ? PQ(1) = PQ(2) = 2^nextpow2(2*m), where m is MAX(AB).
%
% ? PQ = PADDEDSIZE(AB, CD), where AB and CD are two-element size
% ? vectors, computes the two-element size vector PQ. ?The elements
% ? of PQ are the smallest even integers greater than or equal to
% ? AB + CD - 1.
%
% ? PQ = PADDEDSIZE(AB, CD, 'PWR2') computes the vector PQ such that
% ? PQ(1) = PQ(2) = 2^nextpow2(2*m), where m is MAX([AB CD]).
% ? Copyright 2002-2004 R. C. Gonzalez, R. E. Woods, & S. L. Eddins
% ? Digital Image Processing Using MATLAB, Prentice-Hall, 2004
% ? $Revision: 1.5 $ ?$Date: 2003/08/25 14:28:22 $
if nargin == 1
? PQ ?= 2*AB;
elseif nargin == 2 & ~ischar(CD)
? PQ = AB + CD - 1;
? PQ = 2 * ceil(PQ / 2);
elseif nargin == 2
? m = max(AB); % Maximum dimension.
? % Find power-of-2 at least twice m.
? P = 2^nextpow2(2*m);
? PQ = [P, P];
elseif nargin == 3
? m = max([AB CD]); % Maximum dimension.
? P = 2^nextpow2(2*m);
? PQ = [P, P];
else
? error('Wrong number of inputs.')
end
3 仿真結(jié)果




4 參考文獻(xiàn)
[1]張宏偉. 基于MATLAB的圖像去噪方法的研究與實現(xiàn)[J]. 大慶師范學(xué)院學(xué)報, 2016, 36(3):4.
博主簡介:擅長智能優(yōu)化算法、神經(jīng)網(wǎng)絡(luò)預(yù)測、信號處理、元胞自動機(jī)、圖像處理、路徑規(guī)劃、無人機(jī)等多種領(lǐng)域的Matlab仿真,相關(guān)matlab代碼問題可私信交流。
部分理論引用網(wǎng)絡(luò)文獻(xiàn),若有侵權(quán)聯(lián)系博主刪除。
