




版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報或認(rèn)領(lǐng)
文檔簡介
1、數(shù)字圖像處理實(shí)驗一圖像灰度變換及直方圖顯示熟悉matlab的編程環(huán)境;復(fù)習(xí)MATLAB語言的基本用法;掌握MATLAB語言中圖象數(shù)據(jù)與信息的讀取存儲方法;掌握matlab中圖像灰度變換方法;掌握在MATLAB中繪制灰度直方圖的方法; 實(shí)驗?zāi)康膶?shí)驗中運(yùn)用的函數(shù) A=imread(FILENAME.FMT) imshow(A,low high) imwrite(A,FILENAME.FMT) G = intrans(F, neg) G = intrans(F, log, C, CLASS) G = intrans(F, gamma, GAM) G = intrans(F, stretch, M,
2、E)實(shí)驗中運(yùn)用的函數(shù)imhist(I):displays a histogram for the image I above a grayscale colorbar. imhist(I, n):displays a histogram where n specifies the number of bins used in the histogramimhist(X, map) :displays a histogram for the indexed image X.counts,x = imhist(.): returns the histogram counts in counts a
3、nd the bin locations in x so that stem(x,counts) shows the histogram. 實(shí)驗中運(yùn)用的函數(shù)imhist(f)Bar(horz, v, width) v:一個行向量,包含被繪制的點(diǎn) horz:與v維數(shù)相同的向量,包含水平標(biāo)度值的增量,若忽略horz, 則horz在0到length(v)之間等分若干 width:0到1之間的數(shù)值。width為1時條狀最明顯,0時為線。Stem(horz, v, color_linestyle_marker, fill) color_linestyle_marker:顏色,線類型,標(biāo)記 fill:若使
4、用fill,標(biāo)記點(diǎn)顏色與corlor一致Plot(horz, v, color, g, linestyle,none,marker,s)實(shí)驗內(nèi)容讀出一副圖像,利用灰度變換函數(shù),基于switch語句分別實(shí)現(xiàn)圖像灰度的反變換,對數(shù)變換,對比度拉伸變換,gamma變換操作,利用subplot在一個圖像窗口的不同區(qū)域分別顯示變換的結(jié)果。針對灰度變換后的圖像,采用不同的方法繪制直方圖,分析每種灰度變換后,直方圖之間的區(qū)別。實(shí)驗內(nèi)容:操作提示function yourOutput = Yourfunctionname (yourInput)H1 行參數(shù)介紹%讀入圖像利用imadjust實(shí)現(xiàn)反變換,及對數(shù)變
5、換,再利用intrans實(shí)現(xiàn)gamma變換和對比度拉伸變換。這里要進(jìn)行哪種變換,需要利用switch語句來控制;分別把每種變換結(jié)果利用subplot顯示出來對每種變換的圖像進(jìn)行直方圖計算,并利用不同的方法顯示直方圖實(shí)驗內(nèi)容:操作提示function g = intrans(f, varargin)% Verify the correct number of inputs.error(nargchk(2, 4, nargin) % Store the class of the input for use later.classin = class(f); % If the input is of
6、 class double, and it is outside the range0, 1, and the specified transformation is not log, convert the input to the range 0, 1.if strcmp(class(f), double) & max(f(:) 1 & . strcmp(varargin1, log) f = mat2gray(f);else % Convert to double, regardless of class(f). f = im2double(f);end實(shí)驗內(nèi)容:操作提示% Determ
7、ine the type of transformation specified.method = varargin1;% Perform the intensity transformation specified. switch methodcase neg g = imcomplement(f); case log if length(varargin) = 1 c = 1; elseif length(varargin) = 2 c = varargin2; elseif length(varargin) = 3 c = varargin2; classin = varargin3;
8、else error(Incorrect number of inputs for the log option.) end g = c*(log(1 + double(f);實(shí)驗內(nèi)容:操作提示case gamma if length(varargin) 2 error(Not enough inputs for the gamma option.) end gam = varargin2; g = imadjust(f, , , gam); case stretch if length(varargin) = 1 % Use defaults. m = mean2(f); E = 4.0; elseif length(varargin) = 3 m = varargin2; E = varargin3; else error(Incorrect number of inputs for the stretch option.) end g = 1./(1 + (m./(f +
溫馨提示
- 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)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 供電 水 氣合同標(biāo)準(zhǔn)文本
- 供應(yīng)材料三方合同標(biāo)準(zhǔn)文本
- 代工包裝合同標(biāo)準(zhǔn)文本
- 保潔地毯清洗合同標(biāo)準(zhǔn)文本
- 個人簽訂物業(yè)合同樣本
- 不銹鋼設(shè)備出口合同樣本
- 保潔公司租房合同樣本
- 代理法律服務(wù)合同樣本
- 修車用工合同標(biāo)準(zhǔn)文本
- 買車合同樣本
- (機(jī)械創(chuàng)新設(shè)計論文)
- GB/T 39802-2021城鎮(zhèn)供熱保溫材料技術(shù)條件
- GB/T 2792-2014膠粘帶剝離強(qiáng)度的試驗方法
- GB/T 21566-2008危險品爆炸品摩擦感度試驗方法
- GB/T 215-2003煤中各種形態(tài)硫的測定方法
- GB/T 17492-2012工業(yè)用金屬絲編織網(wǎng)技術(shù)要求和檢驗
- GB/T 17207-2012電子設(shè)備用固定電容器第18-1部分:空白詳細(xì)規(guī)范表面安裝固體(MnO2)電解質(zhì)鋁固定電容器評定水平EZ
- GB/T 16886.7-2001醫(yī)療器械生物學(xué)評價第7部分:環(huán)氧乙烷滅菌殘留量
- 國開電大《人員招聘與培訓(xùn)實(shí)務(wù)》形考任務(wù)4國家開放大學(xué)試題答案
- 鐵路職工政治理論應(yīng)知應(yīng)會題庫
- 中考復(fù)習(xí)確定二次函數(shù)的解析式課件
評論
0/150
提交評論