2023年計(jì)算機(jī)視覺實(shí)驗(yàn)報(bào)告Eperiment_第1頁
2023年計(jì)算機(jī)視覺實(shí)驗(yàn)報(bào)告Eperiment_第2頁
2023年計(jì)算機(jī)視覺實(shí)驗(yàn)報(bào)告Eperiment_第3頁
2023年計(jì)算機(jī)視覺實(shí)驗(yàn)報(bào)告Eperiment_第4頁
2023年計(jì)算機(jī)視覺實(shí)驗(yàn)報(bào)告Eperiment_第5頁
已閱讀5頁,還剩1頁未讀 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡(jiǎn)介

Experiment3:EdgeDetection

Class:電子1203班StudentID:Name:王影

I.Aim

Theaimofthis1aboratorysessionistolearntodealwithimagedata

byMat1ab.Bytheendofthissession,youshouldbeableto

performimagepreprocessingofedgedetectioninspatialdomain

andfrequencydomain.

II.KnowledgerequiredintheExperiment

i.Youaresupposedtohave1earnedthebasicski1IsofusingMatlab;

ii.YouneedtoreviewMat1abprogramminglanguageandM-filefor

mat.

iii.Youshou1dhavestudiededgedetectionmethods.

IH.ExperimentContents

Demand:Pleaseshowthefigureonthe1eftandlistthecodeson由erightres

pectivelybel1oweachquestion.(請(qǐng)將運(yùn)營結(jié)果(圖片)和程序代碼貼在每題下方)

i.Read“car?jpg”fi1e(todothisbyimreadfunction),convertthecolor

imageintograysealeimage,andthenperfbrmedgedetectionusingRo

terts,Prewitt,Sobe1operatorseparate1yinspatia1domainanddisp1

aytheresultsinaMatlabwindow.

程序:

c1ear;

im=imread('car.jpg');

I=rgb2gray(im);

subplot(3Z2Z1);imshow(I);

title('Grayimage*);

[Y,X]=size(I);

im_edge=zeros(Y,X);

T=30;

fork=2:Y-l

forkk=2:X-l

im_edge(k,kk)=abs(I(k+lzkk+1)-I(kzkk))+abs(I(k,kk+

1)-1(k+lzkk));

if(im_edge(k,kk)>T)

im_edge(k,kk)=1;

else

im_edge(k,kk)=0;

end

end

end

subplot(3,2,2);

imshow(im_edge,[]);%[]EAEy^YxQSl-Ed0~255pA-SII§AU\£

tit1e('Robertimage');

[Yx]=size(I);

imedge=zeros(Y,X);

fork=2:Y-1

forkk=2:X-l

imedge(k,kk)=abs(I(k-1,kk+l)-I(k-lzkk-1))+abs(I(k,kk

+1)-im(kzkk-1))+abs(I(k+1zkk+1)-I(k+1,kk-1))+??.

abs(I(k+1,kk-1)-1(k-lzkk-1))+abs(I(k+lzkk)-I(k

-1,kk))+abs(I(k+l,kk+l)-工(k-l,kk+1));

end

end

subp1ot(3,2,3);

imshow(imedge,[]);

title(1Prewitimage*);

[YX]=size(I);

im_edge=zeros(YzX);

fork=2:Y-l

forkk=2:X—1

im_edge(k,kk)=abs(I(k-1,kk+1)-I(k-1,kk-1))+2*abs(工(k,k

k+1)-I(k,kk-1))+abs(I(k+1,kk+1)-1(k+1,kk-1))+...

abs(工(k+l,kk-1)-I(k-lzkk-1))+2*abs(I(k+lzkk)

-I(k-1,kk))+abs(I(k+1zkk+1)-I(k-1,kk+l));

end

end

subplot(3,2,4);

imshow(im_edgez[]);

title('Sobelimage1);

圖像如下:

ii.Read“car.jpg”fi1e(todothisbyimreadfunetion),convertthecolor

imageintograyscaleimage,thenperformedgedetectioninfrequencydoma

inusingGaussianHighpassfiIteranddisplaytheresuItinaMatlab

window.

第二題程序:

%頻域邊沿檢測(cè),運(yùn)用Gassian高通濾波器進(jìn)行濾波,進(jìn)行邊沿檢測(cè)

%頻域邊沿檢測(cè),運(yùn)用Gassian高通濾波器進(jìn)行濾波,進(jìn)行邊沿檢測(cè)

clear;

im=imread('car.jpg*);

I=rgb2gray(im);

subplot(1,2,1);

imshow(I);

title(/grayimage);

%shiftingimage(mu1tiplytheimageby(-l)x+y)

[row,col]=size(I);

[Y,X]=meshgrid(1:co1,1:row);

II=double(I).*(/).A(X+Y);

F=fft2(11);

%subplot(2,2,2);

%title('Fourierspectrum');

%creathighpassfiIter

D=zeros(row,col);

u0=floor(row/2);%傅立葉變換中心

v0=floor(col/2);

D0=40;%截止頻率

n=2;

fori=l:row

forj=l:col

d=((i-uO)-2+(j-v0)A2)A0.5;

%D(i,j)=1/(1+(D0/d)A(2*n));

D(i,j)=l-exp((-d八2)/(2*(D0)人2));

end

end

%fi1tering

G=F.*D;

%Inverttheresu1tandshifting

g=rea1(ifft2(G));

im=g.*(-l).A(X+Y);

im=im>40;%閾值擬定edge

subplot(l,2,2);

imshow(im);

t

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

評(píng)論

0/150

提交評(píng)論