版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
1、 matlab 實(shí)踐 課程設(shè)計(jì)學(xué)生姓名: 學(xué) 號: 專業(yè)班級: 指導(dǎo)教師: 二 年 3月 1 日目 錄1.設(shè)計(jì)目的32.題目分析33.總體設(shè)計(jì)34.具體設(shè)計(jì)55.結(jié)果分析346.心得體會347.附錄代碼361、設(shè)計(jì)目的:綜合運(yùn)用matlab工具箱實(shí)現(xiàn)圖像處理的gui程序設(shè)計(jì), 利用matlab圖像處理工具箱,設(shè)計(jì)和實(shí)現(xiàn)自己的photoshop 。2、題目分析 利用matlab的gui程序設(shè)計(jì)一個(gè)簡單實(shí)用的圖像處理程序。該程序應(yīng)具備圖像處理的常用功能,以滿足用戶的使用?,F(xiàn)設(shè)計(jì)程序有以下基本功能:1)圖像的讀取和保存。2)設(shè)計(jì)圖形用戶界面,讓用戶能夠?qū)D像進(jìn)行任意的亮度和對比度變化調(diào)整,顯示和對比
2、變換前后的圖像。3)設(shè)計(jì)圖形用戶界面,讓用戶能夠用鼠標(biāo)選取圖像感興趣區(qū)域,顯示和保存該選擇區(qū)域。4)編寫程序通過最近鄰插值和雙線性插值等算法將用戶所選取的圖像區(qū)域進(jìn)行放大和縮小整數(shù)倍的操作,并保存,比較幾種插值的效果。5)圖像直方圖統(tǒng)計(jì)和直方圖均衡,要求顯示直方圖統(tǒng)計(jì),比較直方圖均衡后的效果。6)能對圖像加入各種噪聲,并通過幾種濾波算法實(shí)現(xiàn)去噪并顯示結(jié)果。7)額外功能。3、總體設(shè)計(jì) 圖一軟件的總體設(shè)計(jì)界面布局如上圖所示,主要分為2個(gè)部分:顯示區(qū)域與操作區(qū)域。顯示區(qū)域:顯示載入原圖,以及通過處理后的圖像。操作區(qū)域:通過功能鍵實(shí)現(xiàn)對圖像的各種處理。在截圖中可見,左部為一系列功能按鍵如“還原”、“撤
3、銷”、“截圖”等等 ;界面正中部分為圖片顯示部分,界面中下方為系列功能切換選擇組。設(shè)計(jì)完成后運(yùn)行的軟件界面如下: 圖二 與圖一先比,運(yùn)行后的界面更為簡潔。利用“編輯”菜單可調(diào)出相應(yīng)的功能鍵。例如:4、具體設(shè)計(jì)現(xiàn)介紹各個(gè)功能模塊的功能與實(shí)現(xiàn)。4.1菜單欄的設(shè)計(jì)。通過menu editor創(chuàng)建如下菜單,通過以下菜單來控制顯示或隱藏功能按鍵以“編輯”菜單中“圖像變形”中的“圖像翻轉(zhuǎn)”為例說明實(shí)現(xiàn)用戶界面功能鍵“圖像翻轉(zhuǎn)”的顯示與隱藏。實(shí)現(xiàn)該功能的程序段如下:function tuxiangfanzhuan_callback(hobject, eventdata, handles)% hobject
4、handle to tuxiangfanzhuan (see gcbo)% eventdata reserved - to be defined in a future version of matlab% handles structure with handles and user data (see guidata)set(handles.uipanel7,visible,on);if strcmp(get(gcbo, checked),on) set(handles.uipanel7,visible,on); set(gcbo, checked, off); set(handles.u
5、ipanel7,visible,off);else set(gcbo, checked, on);end該段程序通過設(shè)置“圖像翻轉(zhuǎn)”功能鍵對應(yīng)的句柄uipanel7中的“visible”屬性的開關(guān)來實(shí)現(xiàn)該功能鍵的顯示隱藏。其他同理。4.2圖像的讀取和保存。 (1)利用“文件”菜單中的“打開”、“保存為”分別實(shí)現(xiàn)圖片的讀取與保存。 利用matlab中 “ uigetfile”、“imread” “imshow”實(shí)現(xiàn)圖像文件的讀取與顯示:function openfile_callback(hobject, eventdata, handles)% hobject handle to openfi
6、le (see gcbo)% eventdata reserved - to be defined in a future version of matlab% handles structure with handles and user data (see guidata)filename,pathname=uigetfile(*.jpg;*.bmp;*.tif;*.*,載入圖像);if isequal(filename,0)|isequal(pathname,0) errordlg(沒有選中文件,出錯(cuò)); return;else file=pathname,filename; globa
7、l s %設(shè)置一個(gè)全局變量s,保存初始圖像路徑,以便之后的還原操作 s=file; x=imread(file); set(handles.axes1,handlevisibility,on); axes(handles.axes1); imshow(x); set(handles.axes1,handlevisibility,off); axes(handles.axes2); imshow(x); handles.img=x; guidata(hobject,handles);end程序關(guān)鍵部分: 通過filename,pathname=uigetfile(*.jpg;*.bmp;*.ti
8、f;*.*,載入圖像)選擇相應(yīng)路徑打開的圖像;通過file=pathname,filename; x=imread(file); 讀取選中的圖像;最后,通過imshow(x)在顯示區(qū)域上顯示圖像。(2)圖像保存。利用“uiputfile”、“imwrite”函數(shù)實(shí)現(xiàn)圖像文件的保存。function save_callback(hobject, eventdata, handles)% hobject handle to save (see gcbo)% eventdata reserved - to be defined in a future version of matlab% handl
9、es structure with handles and user data (see guidata) sfilename ,sfilepath=uiputfile(*.jpg;*.bmp;*.tif;*.*,保存圖像文件,untitled.jpg); if isequal(sfilename,sfilepath,0,0) sfilefullname=sfilepath ,sfilename; imwrite(handles.img,sfilefullname); else msgbox(你按了取消鍵,保存失敗); end 程序關(guān)鍵部分:通sfilename ,sfilepath=uipu
10、tfile(*.jpg;*.bmp;*.tif;*.*,保存圖像文件,untitled.jpg)選擇圖像文件保存的路徑與格式;然后,通過sfilefullname=sfilepath ,sfilename;imwrite(handles.img,sfilefullname); 實(shí)現(xiàn)對圖像的保存。(3)程序的退出。 function exit_callback(hobject, eventdata, handles)% hobject handle to exit (see gcbo)% eventdata reserved - to be defined in a future version
11、 of matlab% handles structure with handles and user data (see guidata)clc;close all;close(gcf);clear;4.3對圖像進(jìn)行任意的亮度和對比度變化調(diào)整,顯示和對比變換前后的圖像。 運(yùn)行程序后,通過“編輯”菜單中的“常用處理”選中“亮度調(diào)節(jié)”在顯示出相應(yīng)的功能鍵后,通過載入讀取圖像,比并進(jìn)行處理,效果如下:亮度處理前: 亮度處理后:實(shí)現(xiàn)程序段如下:% - executes on button press in radiobutton12.function radiobutton12_callback(h
12、object, eventdata, handles)% hobject handle to radiobutton12 (see gcbo)% eventdata reserved - to be defined in a future version of matlab% handles structure with handles and user data (see guidata) % hint: get(hobject,value) returns toggle state of radiobutton12global taxes(handles.axes2);t=getimage
13、; prompt=調(diào)整倍數(shù); defans=1; p=inputdlg(prompt,input,1,defans); p1=str2num(p1); y=imadjust(handles.img, , ,p1); %亮度調(diào)節(jié) imshow(y); handles.img=y; guidata(hobject,handles);對比度處理前:對比度處理后(增強(qiáng)3倍):對比度減弱1.5倍后:實(shí)現(xiàn)程序段如下:function uipanel10_selectionchangefcn(hobject, eventdata, handles)% hobject handle to uipanel10
14、(see gcbo)% eventdata reserved - to be defined in a future version of matlab% handles structure with handles and user data (see guidata)global tstr=get(hobject,string);axes(handles.axes2); switch str case增強(qiáng) t=getimage; prompt=輸入?yún)?shù):; defans=1; p=inputdlg(prompt,input,1,defans); p1=str2num(p1); f=immu
15、ltiply(handles.img,p1); imshow(f); handles.img=f; guidata(hobject,handles); case減弱 t=getimage; prompt=輸入?yún)?shù):; defans=1; p=inputdlg(prompt,input,1,defans); p1=str2num(p1); f=imdivide(handles.img,p1); imshow(f); handles.img=f; guidata(hobject,handles);end 該程序段主要通過 f=immultiply(handles.img,p1); p=inputd
16、lg(prompt,input,1,defans);分別實(shí)現(xiàn)圖像對比度的增強(qiáng)與減弱。 44 用鼠標(biāo)選取圖像感興趣區(qū)域,顯示和保存該選擇區(qū)域。 通過imcrop(x)函數(shù)來實(shí)現(xiàn)對圖片某一區(qū)域的截取,截取的圖片在右框中顯示。結(jié)合“保存為”,可把截圖處理后的圖片保存在指定路徑。實(shí)現(xiàn)程序段如下:% - executes on button press in pushbutton1.function pushbutton1_callback(hobject, eventdata, handles)% hobject handle to pushbutton1 (see gcbo)% eventdata
17、reserved - to be defined in a future version of matlab% handles structure with handles and user data (see guidata)global taxes(handles.axes2);t=getimage;x=imcrop(handles.img); %截圖imshow(x);handles.img=x;guidata(hobject,handles);4.5 圖像轉(zhuǎn)化為灰度圖像。由于在matlab中較多的圖像處理函數(shù)支持對灰度圖像進(jìn)行處理,故對圖像進(jìn)行灰度轉(zhuǎn)化十分必要??衫胷gb2gray(
18、x)函數(shù)對其他圖像進(jìn)行灰度圖像的轉(zhuǎn)化。轉(zhuǎn)化實(shí)例如下:實(shí)現(xiàn)程序段如下:% - executes on button press in radiobutton16.function radiobutton16_callback(hobject, eventdata, handles)% hobject handle to radiobutton16 (see gcbo)% eventdata reserved - to be defined in a future version of matlab% handles structure with handles and user data (se
19、e guidata) % hint: get(hobject,value) returns toggle state of radiobutton16 global taxes(handles.axes2);t=getimage;x=rgb2gray(handles.img); %rgbimshow(x);handles.img=x;guidata(hobject,handles);4.6對圖像進(jìn)行放大和縮小整數(shù)倍的操作。通過imresize(x,n,mode)函數(shù)對圖像x進(jìn)行放大或者縮小。n放大縮小倍數(shù),mode為采用的方式。 通過處理后可發(fā)現(xiàn)保存的圖片的比原圖放大了(縮小了)。實(shí)現(xiàn)的程序段
20、如下:function uipanel9_selectionchangefcn(hobject, eventdata, handles)% hobject handle to uipanel9 (see gcbo)% eventdata reserved - to be defined in a future version of matlab% handles structure with handles and user data (see guidata)global tstr=get(hobject,string);axes(handles.axes2);switch str case
21、最近鄰插值 t=getimage; prompt=輸入?yún)?shù):; defans=2; p=inputdlg(prompt,input,1,defans); p1=str2num(p1); f=imresize(handles.img,p1,nearest); imshow(f); handles.img=f; guidata(hobject,handles); case雙線性插值 t=getimage; prompt=輸入?yún)?shù):; defans=1; p=inputdlg(prompt,input,1,defans); p1=str2num(p1); f=imresize(handles.img
22、,p1,bilinear); imshow(f); handles.img=f; guidata(hobject,handles);end4.7圖像直方圖統(tǒng)計(jì)和直方圖均衡。 (1)通過histeq(x)函數(shù)實(shí)現(xiàn)直方圖均衡。因?yàn)榇撕瘮?shù)只能對灰度圖像進(jìn)行直方圖均衡。故應(yīng)先將彩圖轉(zhuǎn)為灰度圖像。 在上一步的基礎(chǔ)上對第二幅圖進(jìn)行直方圖均衡:直方圖均衡實(shí)現(xiàn)程序段如下:% - executes on button press in pushbutton7.function pushbutton7_callback(hobject, eventdata, handles)% hobject handle to
23、 pushbutton7 (see gcbo)% eventdata reserved - to be defined in a future version of matlab% handles structure with handles and user data (see guidata)global taxes(handles.axes2);t=getimage;h=histeq(handles.img); imshow(h);handles.img=h;guidata(hobject,handles); 關(guān)鍵部分:通過 h=histeq(handles.img)進(jìn)行直方圖均衡 (2
24、)直方圖統(tǒng)計(jì)。通過利用imhist(x)函數(shù)來實(shí)現(xiàn)直方圖統(tǒng)計(jì)。% - executes on button press in pushbutton8.function pushbutton8_callback(hobject, eventdata, handles)% hobject handle to pushbutton8 (see gcbo)% eventdata reserved - to be defined in a future version of matlab% handles structure with handles and user data (see guidata
25、)axes(handles.axes2);x=imhist(handles.img); %直方圖統(tǒng)計(jì)x1=x(1:10:256);horz=1:10:256;bar(horz,x1);axis(0 255 0 15000);set(handles.axes2,xtick,0:50:255);set(handles.axes2,ytick,0:2000:15000);注意:橫縱坐標(biāo)的范圍應(yīng)選取適當(dāng),否則,統(tǒng)計(jì)圖表有可能超出范圍。4.8加入各種噪聲,并通過幾種濾波算法實(shí)現(xiàn)去噪。(1)加入噪聲。通過imnoise(i,type,parameters)來加入各種噪聲。加入椒鹽噪聲加入高斯噪聲:加入乘性
26、噪聲:實(shí)現(xiàn)程序段如下:function uipanel4_selectionchangefcn(hobject, eventdata, handles)% hobject handle to uipanel4 (see gcbo)% eventdata reserved - to be defined in a future version of matlab% handles structure with handles and user data (see guidata)global tstr=get(hobject,string);axes(handles.axes2);switch
27、str case 椒鹽噪聲 t=getimage; prompt=數(shù)日椒鹽噪聲參數(shù)1:; defans=0.02; p=inputdlg(prompt,input,1,defans); p1=str2num(p1); f=imnoise(handles.img,salt & pepper,p1); imshow(f); handles.img=f; guidata(hobject,handles); case 高斯噪聲 t=getimage; prompt=輸入高斯噪聲1:,輸入高斯噪聲2; defans=0,0.02; p=inputdlg(prompt,input,1,defans); p
28、1=str2num(p1); p2=str2num(p2); f=imnoise(handles.img,gaussian,p1,p2); imshow(f); handles.img=f; guidata(hobject,handles); case 乘性噪聲 t=getimage; prompt=輸入乘性噪聲1:; defans=0.02; p=inputdlg(prompt,input,1,defans); p1=str2num(p1); f=imnoise(handles.img,speckle,p1); imshow(f); handles.img=f; guidata(hobjec
29、t,handles); end(2)濾除噪聲(椒鹽噪聲)。濾波前中值濾波后線性濾波后自適應(yīng)濾波后實(shí)現(xiàn)程序段如下:function uipanel5_selectionchangefcn(hobject, eventdata, handles) %圖像濾波% hobject handle to uipanel5 (see gcbo)% eventdata reserved - to be defined in a future version of matlab% handles structure with handles and user data (see guidata)global t
30、str=get(hobject,string);axes(handles.axes2);switch str case 中值濾波 t=getimage; k=medfilt2(handles.img); imshow(k); handles.img=k; guidata(hobject,handles); case 線性濾波 t=getimage; h=1 1 1;1 1 1;1 1 1; h=h/9; i=double(handles.img); k=convn(i,h); imshow(k,); handles.img=k; guidata(hobject,handles); case 自
31、適應(yīng)濾波 t=getimage; k=wiener2(handles.img,5,5); imshow(k); handles.img=k; guidata(hobject,handles);end 低通濾波器濾波后高通濾波器濾波后實(shí)現(xiàn)程序如下:% - executes on button press in pushbutton14.function pushbutton14_callback(hobject, eventdata, handles)% hobject handle to pushbutton14 (see gcbo)% eventdata reserved - to be d
32、efined in a future version of matlab% handles structure with handles and user data (see guidata) axes(handles.axes2);y1=handles.img; f=double(y1); % 數(shù)據(jù)類型轉(zhuǎn)換,matlab不支持圖像的無符號整型的計(jì)算g=fft2(f); % 傅里葉變換g=fftshift(g); % 轉(zhuǎn)換數(shù)據(jù)矩陣m,n=size(g);nn=2; %二階巴特沃斯低通濾波器d0=50; %截止頻率50m=fix(m/2); n=fix(n/2);for i=1:m for j=
33、1:n d=sqrt(i-m)2+(j-n)2); h=1/(1+0.414*(d/d0)(2*nn); % 計(jì)算低通濾波器傳遞函數(shù) result(i,j)=h*g(i,j); endendresult=ifftshift(result);y2=ifft2(result);y3=uint8(real(y2);imshow(y3); % 顯示處理后的圖像 % - executes on button press in pushbutton15.function pushbutton15_callback(hobject, eventdata, handles)% hobject handle t
34、o pushbutton15 (see gcbo)% eventdata reserved - to be defined in a future version of matlab% handles structure with handles and user data (see guidata) axes(handles.axes2);x=(handles.img); f=double(x); % 數(shù)據(jù)類型轉(zhuǎn)換k=fft2(f); % 傅里葉變換g=fftshift(k); % 轉(zhuǎn)換數(shù)據(jù)矩陣m,n=size(g);nn=2;d0=25; %截止頻率25m=fix(m/2); n=fix(
35、n/2);for i=1:m for j=1:n d=sqrt(i-m)2+(j-n)2); % 計(jì)算高通濾波器傳遞函數(shù) if d=d0 h=0; else h=1; end result(i,j)=h*g(i,j); endendresult=ifftshift(result);y2=ifft2(result);y3=uint8(real(y2);imshow(y3); % 顯示濾波處理后的圖像4.9還原 通過一個(gè)全局變量保存原始圖像路徑,在需要還原至原始圖像時(shí),重新讀取該全局變量即可。實(shí)現(xiàn)程序段如下:% - executes on button press in pushbutton9.f
36、unction pushbutton9_callback(hobject, eventdata, handles)% hobject handle to pushbutton9 (see gcbo)% eventdata reserved - to be defined in a future version of matlab% handles structure with handles and user data (see guidata) global s %還原 axes(handles.axes2); y=imread(s); f=imshow(y); handles.img=y;
37、guidata(hobject,handles);4.10 撤銷。 撤銷上一步的操作。通過另設(shè)一個(gè)全局變量t保存是上一次操作后的圖像。實(shí)現(xiàn)程序段如下:- executes on button press in pushbutton11.function pushbutton11_callback(hobject, eventdata, handles)% hobject handle to pushbutton11 (see gcbo)% eventdata reserved - to be defined in a future version of matlab% handles stru
38、cture with handles and user data (see guidata)axes(handles.axes2); %撤銷global timshow(t);handles.img=t;guidata(hobject,handles); 該程序段只是簡單的顯示圖像的功能,其中全局變量t中儲存的是上一步操作處理后的圖像信息。在以上的各段功能程序段中可見均有 “t=getimage;”,此句把當(dāng)前操作前的圖像,即上一次操作后的圖像信息賦予全局變量t。4.11 圖像變形。(1)圖像翻轉(zhuǎn)。實(shí)現(xiàn)圖像的鏡像翻轉(zhuǎn)。左右翻轉(zhuǎn):上下翻轉(zhuǎn)實(shí)現(xiàn)程序如下:function uipanel7_sele
39、ctionchangefcn(hobject, eventdata, handles) %圖像翻轉(zhuǎn)% hobject handle to uipanel7 (see gcbo)% eventdata reserved - to be defined in a future version of matlab% handles structure with handles and user data (see guidata)str=get(hobject,string);axes(handles.axes2);global tswitch str case 左右翻轉(zhuǎn) t=handles.img
40、; f=fliplr(handles.img); imshow(f); handles.img=f; guidata(hobject,handles); case 上下翻轉(zhuǎn) t=handles.img; f=flipud(handles.img); imshow(f); handles.img=f; guidata(hobject,handles); end程序關(guān)鍵部分:通過f=fliplr(handles.img); f=flipud(handles.img);分別實(shí)現(xiàn)左右鏡像翻轉(zhuǎn)與上下鏡像翻轉(zhuǎn)。(2)圖像旋轉(zhuǎn)。實(shí)現(xiàn)圖像的逆時(shí)針旋轉(zhuǎn)任意角度。實(shí)現(xiàn)程序段如下:function pushbutt
41、on3_callback(hobject, eventdata, handles) %圖像愛那個(gè)旋轉(zhuǎn)% hobject handle to pushbutton3 (see gcbo)% eventdata reserved - to be defined in a future version of matlab% handles structure with handles and user data (see guidata)global taxes(handles.axes2);t=getimage;prompt=旋轉(zhuǎn)角度:;defans=0; p=inputdlg(prompt,in
42、put,1,defans);p1=str2num(p1);f=imrotate(handles.img,p1,bilinear,crop);imshow(f);handles.img=f;guidata(hobject,handles); 關(guān)鍵部分:通過p=inputdlg(prompt,input,1,defans);p1=str2num(p1); 來輸入旋轉(zhuǎn)參數(shù)。通過函數(shù)f=imrotate(handles.img,p1,bilinear,crop);實(shí)現(xiàn)翻轉(zhuǎn)。4.12特殊處理(1)底片效果。將圖像變?yōu)榈灼?,并顯示。實(shí)現(xiàn)程序如下:% - executes on button press i
43、n pushbutton12.function pushbutton12_callback(hobject, eventdata, handles)% hobject handle to pushbutton12 (see gcbo)% eventdata reserved - to be defined in a future version of matlab% handles structure with handles and user data (see guidata)global taxes (handles.axes2);t=getimage;f=imcomplement(ha
44、ndles.img); %圖像取反imshow(f);handles.img=f;guidata(hobject,handles); 程序段關(guān)鍵部分:通過f=imcomplement(handles.img);實(shí)現(xiàn)圖像取反,形成底片效果。(2)邊緣信息。采取圖像的邊緣信息。實(shí)現(xiàn)程序段如下:% - executes on button press in pushbutton16.function pushbutton16_callback(hobject, eventdata, handles)% hobject handle to pushbutton16 (see gcbo)% eventd
45、ata reserved - to be defined in a future version of matlab% handles structure with handles and user data (see guidata)global taxes(handles.axes2); t=getimage;f=edge(handles.img,canny);imshow(f);handles.img=f;guidata(hobject,handles); 程序關(guān)鍵部分:通過f=edge(handles.img,canny);是實(shí)現(xiàn)邊緣信息的獲取。5、結(jié)果分析軟件測試基本成功,課題所要求
46、的功能均能較好實(shí)現(xiàn)。但一些功能只支持灰度圖像的處理。其中值得一提的是在濾波處理中的低通濾波與高通濾波的效果。由于一般圖像中含有較多的低頻信息成分高頻成分較少,通過低通濾波后,噪聲以及高頻成分被濾除,圖像雖有少量失真,略顯模糊,但尚可辨識。但若是通過高通濾波后,大量的有效低頻信息被濾除,圖像嚴(yán)重失真,不可辨識。6、心得體會通過為期兩周的matlab課程設(shè)計(jì)實(shí)踐,使我對matlab的使用有了進(jìn)一步的了解和熟悉。 當(dāng)我第一次拿到此次的課題時(shí),感到有些無所適從。雖然,曾經(jīng)學(xué)習(xí)過matlab的課程,在課程的考核中也取得了較好的成績,但由于對matlab的學(xué)習(xí)更多的只是停留在理論上的學(xué)習(xí),在課時(shí)內(nèi)的試驗(yàn)也
47、只是簡單的基礎(chǔ)性試驗(yàn), 所以對matlab實(shí)際運(yùn)用不是很熟練。雖然對課題感到很懵懂,但在鄭老師的簡單提示與指導(dǎo)后,我開始找到了解決問題的路徑。我選擇的是“利用matlab的gui程序設(shè)計(jì)一個(gè)簡單實(shí)用的圖像處理程序”這一課題。本課題的重點(diǎn)是句柄的使用、gui的使用以及matlab中相關(guān)圖像處理函數(shù)使用。 為此,在實(shí)踐正式開始前,我利用課余時(shí)間,重新復(fù)習(xí)了matlab教材,專門借閱了利用matlab進(jìn)行圖像處理的相關(guān)教程,通過索引網(wǎng)絡(luò)上的相關(guān)資料,為課設(shè)做了較為充分的準(zhǔn)備。在參考了相關(guān)材料及源程序,我對自己要做的課設(shè)內(nèi)容有了進(jìn)一步的了解,并對matlab的使用有了更深的體會。 當(dāng)然,在課設(shè)的進(jìn)行過
48、程中,我還是遇到了不少問題。例如,起初由于我對句柄使用以及一些函數(shù)使用的不恰當(dāng),使得在對圖像文件的保存上就遇到了問題,不過最后還是在老師的提示下解決了。隨著課設(shè)的進(jìn)行,對matlab的的熟悉度逐步加深。在基本功不斷扎實(shí)的基礎(chǔ)上,我開始進(jìn)行一些擴(kuò)張功能的嘗試,比如還原操作、對功能鍵實(shí)現(xiàn)顯示和隱藏的功能、實(shí)現(xiàn)撤銷多次前操作等 。其中前兩個(gè)較為成功的完成,但在第三個(gè)功能上出現(xiàn)了些問題,由于對matlab中數(shù)組結(jié)構(gòu)體與循環(huán)套用使用的不當(dāng),到實(shí)踐結(jié)束之際也未實(shí)現(xiàn)所犯的錯(cuò)誤,只能退而求次,實(shí)現(xiàn)執(zhí)行撤銷功能(恢復(fù)到上次操作),不能不說不是一個(gè)遺憾 但是,總體來說,此次的課程設(shè)計(jì),還是較為滿意的。它不但鞭策著我去鞏固matlab的基礎(chǔ)理論知識,還提高了我對matlab的實(shí)際操作運(yùn)用,使得理論與實(shí)踐相結(jié)合,為進(jìn)一步學(xué)習(xí)matlab打下堅(jiān)實(shí)的基礎(chǔ);同時(shí),在實(shí)踐的工程中,也讓我體會到一種努力付出并得到回報(bào)的滿足感覺。 參考書目:(五號,宋體加粗)1 matlab實(shí)用教程 鄭阿奇 電子工業(yè)出版社2 matlab仿真在信號處理中的應(yīng)用 徐明遠(yuǎn) 劉增力 西安電子科技大學(xué)出版社 52 / 52附錄:(五號,宋體加
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 房地產(chǎn)行業(yè)流動(dòng)性風(fēng)險(xiǎn)應(yīng)對計(jì)劃
- 2024-2030年中國融資租賃行業(yè)運(yùn)作模式及未來投資規(guī)劃分析報(bào)告
- 2024-2030年中國蠔殼粉市場競爭戰(zhàn)略及投資風(fēng)險(xiǎn)分析報(bào)告
- 2024-2030年中國藍(lán)莓果汁行業(yè)市場營銷模式及發(fā)展競爭力分析報(bào)告版
- 2024-2030年中國茶粉市場競爭狀況與營銷趨勢預(yù)測報(bào)告
- 2024-2030年中國花青素市場營銷狀況與投資盈利預(yù)測報(bào)告
- 2024-2030年中國色甘酸鈉行業(yè)市場運(yùn)營模式及未來發(fā)展動(dòng)向預(yù)測報(bào)告
- 2024-2030年中國航空電子商務(wù)行業(yè)發(fā)展模式及投資規(guī)劃研究報(bào)告
- 2024-2030年中國自備列行業(yè)競爭趨勢及投資模式分析報(bào)告
- 2024-2030年中國組合曲軸行業(yè)發(fā)展現(xiàn)狀投資策略分析報(bào)告
- 國開電大本科工程數(shù)學(xué)(本)在線形考(形成性考核作業(yè)4)試題及答案
- 外研版四年級英語上冊 (We are going to visit Hainan)教學(xué)課件
- 卓有成效的管理者解讀
- 外來施工人員入廠工作流程
- 感染性疾病臨床診療規(guī)范2021版
- 堆垛機(jī)安裝指南演示文稿
- 退休歡送會上本人感人講話稿(5篇)
- 《一切都是最好的安排》讀書筆記思維導(dǎo)圖PPT模板下載
- 識圖培訓(xùn)學(xué)習(xí)課件
- 小議“雙減”政策及其落實(shí)措施效果研究
- 【企業(yè)杜邦分析國內(nèi)外文獻(xiàn)綜述6000字】
評論
0/150
提交評論