濾波器的設計與實現課程設計
❶ 求一篇圖像濾波器課程設計
代碼分別對灰度圖像,真彩色圖像以及索引圖像進行濾波處理,然後用if語句將三段整合,並使用isind,isrgb,isgray語句判斷圖像類型,做出相應處理。
W=input('輸入原始圖像及其拓展名:','s');
h = imread(W);
P=imnoise(h,'gaussian ',0.02);
x=isind(P)
y=isrgb(P)
z=isgray(P)
if x==1
[X,map]=imread(W);
imshow(X,map);
P=imnoise(X,'gaussian',0.02);
subplot(2,2,1),imshow(P,map),title('原始圖像','fontsize',20,'fontname','隸書');
h1=filter2(fspecial('gaussian',[3 3],0.5),P);
subplot(2,2,2),imshow(h1,map),title('濾波圖像 濾波器:3*3 sigma=0.5','fontsize',20,'fontname','隸書');
h2=filter2(fspecial('gaussian',[3 3],1.5),P);
subplot(2,2,3),imshow(h2,map),title('濾波圖像 濾波器:3*3 sigma=1.5','fontsize',20,'fontname','隸書');
h3=filter2(fspecial('gaussian',[3 3],2.5),P);
subplot(2,2,4),imshow(h3,map),title('濾波圖像 濾波器:3*3 sigma=2.5','fontsize',20,'fontname','隸書');
elseif y==1
subplot(2,2,1);imshow(P,[]);
title('(a)原始圖像','fontsize',20,'fontname','隸書');
H = fspecial('gaussian');
gi= imfilter(P,H,'replicate');
subplot(2,2,2);imshow(gi,[]);
title('(b)濾波圖像 濾波器3*3 sigma=0.5','fontsize',20,'fontname','隸書');
H1= fspecial('gaussian',[3,3],1.5);
gi1= imfilter(P,H1,'replicate');
subplot(2,2,3);imshow(gi1,[]);
title('(c)濾波圖像 濾波器3*3 sigma=1.5','fontsize',20,'fontname','隸書');
H2=fspecial('gaussian',[3,3],2.5);
gi2=imfilter(P,H2,'replicate');
subplot(2,2,4);imshow(gi2,[]);
title('(d)濾波圖像 濾波器3*3 sigma=2.5','fontsize',20,'fontname','隸書');
else z==1
subplot(2,2,1),imshow(P)
title('(a)原始圖像','fontsize',20,'fontname','隸書');
J1=filter2(fspecial('gaussian',[3,3], 0.5),P)/255;
subplot(2,2,2),imshow(J1)
title('(b)濾波圖像 濾波器3*3 sigma=0.5','fontsize',20,'fontname','隸書');
J2=filter2(fspecial('gaussian',[3,3], 1.5),P)/255;
subplot(2,2,3),imshow(J2)
title('(c)濾波圖像 濾波器3*3 sigma=1.5','fontsize',20,'fontname','隸書');
J3=filter2(fspecial('gaussian',[3,3], 2.5),P)/255;
subplot(2,2,4),imshow(J3)
title('(d)濾波圖像 濾波器3*3 sigma=2.5','fontsize',20,'fontname','隸書');
end
❷ 各位大神有誰做過,模擬電路課程設計之濾波器原理設計的嗎
考試那玩意我不懂,也不想去看那玩意
你把要設計的濾波器的類型,頻率,電源電壓說一下
估計就是帶運放的有源濾波器吧?
❸ 濾波器課程設計!
太簡單啦!但是這分數實在是太少!!
❹ 怎麼設計 帶通 濾波器 啊( 模電 課程設計) 求 設計的 三種 方案!!!!!!
LC諧振濾波器
低通+高通組合(分無源,有源)
❺ RC有源濾波器設計 課程設計
電路設計軟體進行設計 有意的請留下QQ我發設計說明給你他是天安公司陳總經理大學的同窗好友,今天一早來找同學有要事相商;還有一位是某企業的業務推銷員
❻ 求一個低通濾波器 課程設計
這個電路好像很簡單啊 只是簡單的作為信號濾波用的嗎??
幾個內電容和幾個電感就能實現!!容
這里有相關的內容 http://blog.tom.com/blog/read.php?bloggerid=993876&blogid=57336
❼ 幫我寫一個音頻濾波器的課程設計
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
參數初始化
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
clear all; % 關閉以往模擬的數據棧
[Y,fs,bits]=wavread('I:\等一分鍾.wav',[1000000 1800000]); %讀出信號1, 采樣率和采樣位數
n=length(Y); %求采樣信號1的長度
t=0:1/fs:(n-1)/fs; %求采樣信號1時域上的采樣點數
sound(Y,fs); % 讀出加雜訊後的采樣信號
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 構 造 巴 特 沃 思 濾 器
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%figure(1);
subplot(1,2,1)
plot(t,Y);
xlabel('時間 (t)');ylabel('幅度(Y)');title('時域圖');grid on; subplot(1,2,2)
plot(abs(fft(Y)));
xlabel('頻率(f)');ylabel('幅度(Y)');title('頻譜圖');grid on;
%%%%%%%%%%%%%% 構造800Hz的帶阻濾波器 %%%%%%%%%%%%%
f0=800;
fc=20;
Rp=1;
Rs=30;
wp=200*2*pi/(fs/2);
ws=300*2*pi/(fs/2);
[N,wc]=buttord(wp,ws,Rp,Rs,'s');
[num,den]=butter(N,wc,'low');
[h,w]=freqz(num,den,fs);
figure(2);
subplot(1,2,1);
plot(w*fs/(2*pi),20*log10(abs(h)));
xlabel('頻率(w)');ylabel('幅度(h)');
title('幅頻特性圖');grid on;
B=filter(num,den,Y);
subplot(1,2,2);
plot(t,B);
xlabel('時間 (t))');ylabel('幅度(B)');title('用低通濾波器濾後的時域圖 ');
grid on; figure(3) plot(abs(fft(B)));
xlabel('頻譜 (f))');ylabel('幅度(B)');
title('用低通濾波器濾後的頻譜圖 ');
grid on;
pause(10);
wavplay(B,fs);
%wavwrite(B,fs,16,'designed by 劉其飛巴特沃思濾波器濾波後的語音信號.wav');