最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(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源碼的評論 (共 條)

分享到微博請遵守國家法律
迁安市| 浦城县| 浠水县| 隆尧县| 洞口县| 寿宁县| 襄垣县| 稷山县| 鄂托克前旗| 南召县| 和龙市| 宜兴市| 宕昌县| 洞口县| 米林县| 奉化市| 六枝特区| 南康市| 微博| 咸阳市| 亳州市| 玛沁县| 池州市| 龙海市| 温宿县| 社旗县| 图木舒克市| 华容县| 山西省| 台中县| 莲花县| 夹江县| 定州市| 美姑县| 广西| 安达市| 邹平县| 平果县| 永德县| 新和县| 鲜城|