代码搜索:16
找到约 10,000 项符合「16」的源代码
代码结果 10,000
www.eeworm.com/read/469024/6983751
gif nos_16.gif
www.eeworm.com/read/469036/6983956
jpg t16.jpg
www.eeworm.com/read/469046/6984098
m 7-16.m
[x,y] = meshgrid(-3:1/8:3);
z = peaks(x,y);
surfl(x,y,z);
shading interp
%着色处理
colormap(gray);
%灰度处理
axis([-3 3 -3 3 -8 8])
www.eeworm.com/read/469046/6984109
m 12-16.m
I = imread('alumgrns.tif');
% 读入图像
I2 = blkproc(I,[8 8],'std2(x)*ones(size(x))');
imshow(I)
figure, imshow(I2,[]);
www.eeworm.com/read/469046/6984120
m 16-11.m
www.eeworm.com/read/469046/6984121
m 16-21.m
I = imread('bonemarr.tif');
imshow(I),title('原图像')
I2 = imhmin(I,50);
% H-minima transform
figure,subplot(221)
imshow(I2),title('H-minima transform')
I2 = imhmax(I,50);
% H-maxima transform
su
www.eeworm.com/read/469046/6984122
m 16-2.m
se = strel(eye(5));
% 创建一个对角线形的Strel对象
nhood = getnhood(se)
% 获取结构元素的邻域
I = imread('cameraman.tif');
se = translate(strel(1), [25 25]);
% 偏移[25 25]
J = imdilate(I,se);
% 膨胀处理
imshow(I), title
www.eeworm.com/read/469046/6984123
m 16-10.m
www.eeworm.com/read/469046/6984125
m 16-7.m
BW = imread('circbw.tif');
interval = [0 -1 -1
1 1 -1
0 1 0];
BW2 = bwhitmiss(BW,interval);
imshow(BW)
figure,imshow(BW2)
www.eeworm.com/read/469046/6984126
m 16-8.m
BW1 = imread('circles.tif');
subplot(221),imshow(BW1);
title('原图')
BW2 = bwmorph(BW1,'remove');
subplot(222),imshow(BW2);
title('清除中间亮点')
BW3 = bwmorph(BW1,'skel',Inf);
subplot(223),imshow(BW3)