国产精品天干天干,亚洲毛片在线,日韩gay小鲜肉啪啪18禁,女同Gay自慰喷水

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

【圖像去噪】基于高通、低通、帶通、方向多種濾波器實現(xiàn)圖像去噪含Matlab源碼

2022-05-19 23:44 作者: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)系博主刪除。



【圖像去噪】基于高通、低通、帶通、方向多種濾波器實現(xiàn)圖像去噪含Matlab源碼的評論 (共 條)

分享到微博請遵守國家法律
靖江市| 鄄城县| 秭归县| 濮阳市| 永吉县| 鹤峰县| 鸡东县| 开化县| 博乐市| 南通市| 嘉峪关市| 灌阳县| 徐汇区| 明星| 呼图壁县| 南漳县| 牙克石市| 东方市| 沙河市| 沙洋县| 日土县| 禹州市| 合水县| 阳新县| 德惠市| 察哈| 金门县| 阿克| 滁州市| 阳春市| 石河子市| 讷河市| 咸宁市| 红原县| 陇南市| 宜城市| 龙泉市| 白水县| 鄱阳县| 徐闻县| 临潭县|