91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 1KB
    文件類型: .m
    金幣: 1
    下載: 0 次
    發布日期: 2021-06-11
  • 語言: Matlab
  • 標簽: Butterworth??

資源簡介

在Matlab中使用Butterworth濾波器進行圖像處理

資源截圖

代碼片段和文件信息

%
%?File_name:巴特沃思低通濾波器的實現
%?Author:
%?Date:2009年10月15日
%
Blurred=imread(‘home3.bmp‘);
Blurred=rgb2gray(Blurred);%I?=?RGB2GRAY(RGB)?converts?the?truecolor?image?RGB?
??????????????????????????%to?the?grayscale?intensity?image?I.
figure(1);
imshow(?Blurred);
title(‘原圖像‘);
%設計巴特沃思低通濾波器
k=5;
[mn]=size(Blurred);
H=zeros(mn);
D0=30;
for?u=1:m
??????for?v=1:n
???????Duv=((u-round(m/2))^2+(v-round(n/2))^2)^(1/2);%ROUND(X)?rounds?the?elements?of?X?to?the?nearest?integers.
???????H(uv)=1/(1+(Duv/D0)^(2

評論

共有 條評論