matlab經(jīng)典代碼大全_第1頁(yè)
matlab經(jīng)典代碼大全_第2頁(yè)
matlab經(jīng)典代碼大全_第3頁(yè)
matlab經(jīng)典代碼大全_第4頁(yè)
全文預(yù)覽已結(jié)束

下載本文檔

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

文檔簡(jiǎn)介

-哈哈哈MATLAB顯示正炫余炫圖:plot(x,y1,* r,x,y2,o b)定義【0,2】;t=0:pi/10:2*pi;定義函數(shù)文件:function 返回變量列表=函數(shù)名(輸入變量列表)順序結(jié)構(gòu):選擇結(jié)構(gòu)1)if-else-end語(yǔ)句其格式為:if 邏輯表達(dá)式程序模塊1;else程序模塊2;End圖片讀取:%選擇圖片路徑filename, pathname = . uigetfile(*.jpg;*.bmp;*.gif,選擇圖片); %合成路徑+文件名 str=pathname,filename;%為什么pathname和filename要前面出現(xiàn)的位置相反才能運(yùn)行呢?%讀取圖片 im=imread(str); %使用圖片 axes(handles.axes1); %顯示圖片 imshow(im);邊緣檢測(cè):global im str=get(hObject,string);axes (handles.axes1);switch str case 原圖 imshow(im); case sobel BW = edge(rgb2gray(im),sobel); imshow(BW); case prewitt BW = edge(rgb2gray(im),prewitt); imshow(BW); case canny BW = edge(rgb2gray(im),canny); imshow(BW); Canny算子邊緣定位精確性和抗噪聲能力效果較好,是一個(gè)折中方案end; 開(kāi)閉運(yùn)算:se=1,1,1;1,1,1;1,1,1;1,1,1; %Structuring ElementI=rgb2gray(im);imshow(I,);title(Original Image);I=double(I);im_height,im_width=size(I);se_height,se_width=size(se);halfheight=floor(se_height/2);halfwidth=floor(se_width/2);se_origin=floor(size(se)+1)/2);image_dilation=padarray(I,se_origin,0,both); %Image to be used for dilationimage_erosion=padarray(I,se_origin,256,both); %Image to be used for erosion% Dilation %for k=se_origin(1)+1:im_height+se_origin(1) for kk=se_origin(2)+1:im_width+se_origin(2) dilated_image(k-se_origin(1),kk-se_origin(2)=max(max(se+image_dilation(k-se_origin(1):k+halfheight-1,kk-se_origin(2):kk+halfwidth-1); endendfigure;imshow(dilated_image,);title(Image after Dilation);% Erosion %se=se;for k=se_origin(2)+1:im_height+se_origin(2) for kk=se_origin(1)+1:im_width+se_origin(1) eroded_image(k-se_origin(2),kk-se_origin(1)=min(min(image_erosion(k-se_origin(2):k+halfwidth-1,kk-se_origin(1):kk+halfheight-1)-se); endendfigure;imshow(eroded_image,);title(Image after Erosion);% Opening(Erosion first, then Dilation) %se=se;image_dilation2=eroded_image; %Image to be used for dilationfor k=se_origin(1)+1:im_height-se_origin(1) for kk=se_origin(2)+1:im_width-se_origin(2) opening_image(k-se_origin(1),kk-se_origin(2)=max(max(se+image_dilation2(k-se_origin(1):k+halfheight-1,kk-se_origin(2):kk+halfwidth-1); endendfigure;imshow(opening_image,);title(Opening Image);% Closing(Dilation first, then Erosion) %se=se;image_erosion2=dilated_image; %Image to be used for erosionfor k=se_origin(2)+1:im_height-se_origin(2) for kk=se_origin(1)+1:im_width-se_origin(1) closing_image(k-se_origin(2),kk-se_origin(1)=min(min(image_erosion2(k-se_origin(2):k+halfwidth-1,kk-se_origin(1):kk+halfheight-1)-se); endendfigure;imshow(closing_image,);title(Closing Image);Warning: Image is too big to fit on screen; displaying at 31% scale. In truesizeResize1 at 308 In truesize at 44 In imshow at 161圖像的直方圖歸一化:I=imread(red.bmp);%讀入圖像figure;%打開(kāi)新窗口 M,N=size(I);%計(jì)算圖像大小 counts,x=imhist(I,32);%計(jì)算有32個(gè)小區(qū)間的灰度直方圖 counts=counts/M/N;%計(jì)算歸一化灰度直方圖各區(qū)間的值 stem(x,counts);%繪制歸一化直方圖圖像平移:I=imread(shuichi.jpg);se=translate(strel(1),180 190);B=imdilate(I,se);figure;subplot(1,2,1),subimage(I);title(原圖像);subplot(1,2,2),subimage(B);title(平移后圖像);圖像的轉(zhuǎn)置;A=imread(nir.bmp);tform=maketform(affine,0 1 0;1 0 0;0 0 1);B=imtransform(A,tform,nearest);figure;imshow(A);figure;imshow(B);imwrite(B,nir轉(zhuǎn)置后圖像.bmp); 圖像濾波:B = imfilter(A,H,option1,option2,.)或?qū)懽鱣 = imfilter(f, w, filtering_mode, boundary_options, size_options)其中,f為輸入圖像,w為濾波掩模,g為濾波后圖像。filtering_mode用于指定在濾波過(guò)程中是使用“相關(guān)”還是“卷積”。boundary_options用于處理邊界充零問(wèn)題,邊界的大小由濾波器的大小確定。具體參數(shù)選項(xiàng)見(jiàn)下表:選項(xiàng)描述filtering_modecorr通過(guò)使用相關(guān)來(lái)完成,該值為默認(rèn)。conv通過(guò)使用卷積來(lái)完成boundary_optionsX輸入圖像的邊界通過(guò)用值X(無(wú)引號(hào))來(lái)填充擴(kuò)展其默認(rèn)值為0replicate圖像大小通過(guò)復(fù)制外邊界的值來(lái)擴(kuò)展symmet

溫馨提示

  • 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫(kù)網(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)論