代码搜索:16
找到约 10,000 项符合「16」的源代码
代码结果 10,000
www.eeworm.com/read/469046/6984137
m 16-17.m
bw = zeros(200,200); bw(50,50) = 1;
bw(50,150) = 1;bw(150,100) = 1;
% 初始化一个全0的200×200的数组
% 分别定义三个点值为1
D1 = bwdist(bw,'euclidean');
% 计算欧几里得距离
D2 = bwdist(bw,'cityblock');
% 计算cityblock距离
D3 =
www.eeworm.com/read/469046/6984138
m 16-4.m
bw = imread('text.tif');
se = strel('line',11,90);
% 创建线形STREL对象
bw2 = imerode(bw,se);
%腐蚀图像
imshow(bw), title('原图像')
figure, imshow(bw2), title('腐蚀后的图像')
www.eeworm.com/read/469046/6984139
m 16-20.m
I = imread('cameraman.tif');
IM = imclearborder(I);
% 抑制连结图像边界的亮结构
subplot(121)
imshow(I)
title('原图像')
subplot(122)
imshow(IM)
title('抑制图像')
www.eeworm.com/read/469046/6984140
m 16-15.m
bw = imread('text.tif');
imshow(bw)
bw2 = bwareaopen(bw,40);
%移除面积小于40的对象
figure, imshow(bw2)
www.eeworm.com/read/469046/6984141
m 16-14.m
BW = imread('circles.tif');
imshow(BW);
%图像这里省略
bweuler(BW)
www.eeworm.com/read/469046/6984169
m 6-16.m
x = 0:.25:10;
subplot(211)
stairs(x,sin(x))
title('stairs函数应用示例')
subplot(212)
[xb,yb]=stairs(x,sin(x));
%返回plot函数的两个参数
plot(xb,yb)
title('plot函数实现stairs函数应用示例')
www.eeworm.com/read/468676/6986319
txt data16.txt
2.15971 2.52732 2.06222 2.07664 2.07664 2.52732 2.15971 2.06222
2.11359 2.15971 2.57108 2.06222 2.52732 2.15188 2.1061 2.16759
2.56 2.06222 2.56 2.16759 2.07664 2.06941 2.07664 2.52732
2.07664 2.07
www.eeworm.com/read/468780/6988190
gif 图片16.gif
www.eeworm.com/read/468780/6988273