文章和代码以及样例图片等相关资源,已经归档至【Github仓库:digital-image-processing-matlab】或许公众号【AIShareLab】回复 数字图画处理 也可获取。
66.imshow
功用:显现图画。 语法:
imshow(I,n)
imshow(I,[low high])
imshow(BW)
imshow(X,map)
imshow(RGB)
imshow(...,display_option)
imshow(x,y,A,...)
imshow filename
h = imshow(...)
相关指令: getimage, imread, iptgetpref, iptsetpref, subimage, truesize, warp
67.imwrite
功用:把图画写入图形文件中。 语法:
imwrite(A,filename,fmt)
imwrite(X,map,filename,fmt)
imwrite(...,filename)
imwrite(...,Param1,Val1,Param2,Val2...)
举例
imwrite(X,map,'flowers.hdf','Compression','none',...
'WriteMode','append')
相关指令: imfinfo, imread
68.ind2gray
功用:把检索图画转化为灰度图画。 语法:
I = ind2gray(X,map)
举例
load trees
I = ind2gray(X,map);
imshow(X,map)
figure,imshow(I)
相关指令: gray2ind, imshow, rgb2ntsc
69.ind2rgb
功用:转化索引图画为RGB 真彩图画。 语法:
RGB = ind2rgb(X,map)
相关指令: ind2gray, rgb2ind
70.iptgetpref
功用:获取图画处理工具箱参数设置。 语法:
value = iptgetpref(prefname)
举例
value = iptgetpref('ImshowAxesVisible')
value =
off
相关指令: imshow, iptsetpref
71.iptsetpref
功用:设置图画处理工具箱参数。 语法:
iptsetpref(prefname,value)
举例
iptsetpref('ImshowBorder','tight')
相关指令: imshow, iptgetpref, truesize
72.Iradon
功用:进行反Radon 改换。 语法:
I = iradon(P,theta)
I = iradon(P,theta,interp,filter,d,n)
[I,h] = iradon(...)
举例
P = phantom(128);
R = radon(P,0:179);
I = iradon(R,0:179,'nearest','Hann');
imshow(P)
figure, imshow(I)
相关指令: radon, phantom
73.isbw
功用:判别是否为二进制图画。 语法:
flag = isbw(A)
相关指令: isind, isgray, isrgb
74.isgray
功用:判别是否为灰度图画。 语法:
flag = isgray(A)
相关指令: isbw, isind, isrgb
75.isind
功用:判别是否为索引图画。 语法:
flag = isind(A)
相关指令: isbw, isgray, isrgb
76.isrgb
功用:判读是否为RGB真彩图画。 语法:
flag = isrgb(A)
相关指令: isbw, isgray, isind
77.makelut
功用:创立一个用于applylut 函数的lookup 表。 语法:
lut = makelut(fun,n)
lut = makelut(fun,n,P1,P2,...)
举例
f = inline('sum(x(:)) >= 2'); lut = makelut(f,2)
lut = 0
0
0
1
0
1
1
1
0
1
1
1
1
1
1
1
相关指令: applylut
78.mat2gray
功用:转化矩阵为灰度图画。 语法:
I = mat2gray(A,[amin amax])
I = mat2gray(A)
举例
I = imread('rice.tif');
J = filter2(fspecial('sobel'),I);
K = mat2gray(J);
imshow(I)
figure, imshow(K)
相关指令: gray2ind
79.mean2
功用:核算矩阵元素的平均值。 语法:
b = mean2(A)
相关指令: std2, mean, std
80.medfilt2
功用:进行二维中值过滤。 语法:
B = medfilt2(A,[m n])
B = medfilt2(A)
B = medfilt2(A,'indexed',...)
举例
I = imread('eight.tif');
J = imnoise(I,'salt & pepper',0.02);
K = medfilt2(J);
imshow(J)
figure, imshow(K)
相关指令: filter2, ordfilt2, wiener2
81.montage
功用:在矩形框中一起显现多幅图画。 语法:
montage(I)
montage(BW)
montage(X,map)
montage(RGB)
h = montage(...)
举例
load mri montage(D,map)
相关指令:
immovie
82.nlfilter
功用:进行边沿操作。 语法:
B = nlfilter(A,[m n],fun)
B = nlfilter(A,[m n],fun,P1,P2,...)
B = nlfilter(A,'indexed',...)
举例
B = nlfilter(A,[3 3],'median(x(:))');
相关指令: blkproc, colfilt
83.ntsc2rgb
功用:转化NTSC 的值为RGB 颜色空间。 语法:
rgbmap = ntsc2rgb(yiqmap)
RGB = ntsc2rgb(YIQ)
相关指令: rgb2ntsc, rgb2ind, ind2rgb, ind2gray
84.ordfilt2
功用:进行二维计算顺序过滤。 语法:
B = ordfilt2(A,order,domain)
B = ordfilt2(A,order,domain,S)
B = ordfilt2(...,padopt)
相关指令: medfilt2
85.phantom
功用:发生一个头部幻影图画。 语法:
P = phantom(def,n)
P = phantom(E,n)
[P,E] = phantom(...)
举例
P = phantom('Modified Shepp-Logan',200);
imshow(P)
相关指令: radon, iradon
参考文献:
[1] Rafael C. Gonzalez, Richard E. Woods, and Steven L. Eddins. 2003. Digital Image Processing Using MATLAB. Prentice-Hall, Inc., USA.
[2] 阮秋琦. 数字图画处理(MATLAB版)[M]. 北京:电子工业出版社, 2014.
[3] 冈萨雷斯. 数字图画处理(第三版)[M]. 北京:电子工业出版社, 2011.