代码搜索:2
找到约 10,000 项符合「2」的源代码
代码结果 10,000
www.eeworm.com/read/376899/9301659
asv cha2_2_6.asv
I=imread('rice.png');
background=imopen(I,strel('disk',15));
Ip=imdivide(I,background);
figure;
imshow
imshow(Ip,[]);
K=double(Ip);
m=max(max(K));
n=min(min(K));
K=uint8((K-n).*255/(m-n));
i
www.eeworm.com/read/376899/9301677
m cha2_2_3.m
I=imread('rice.png');
background=imopen(I,strel('disk',15));
Ip=imsubtract(I,background);
figure;
imshow(I);
figure;
imshow(background);
figure;
imshow(Ip,[]);
imwrite(Ip,'cha2_2_3_1.bmp','bm
www.eeworm.com/read/376899/9301685
m cha2_4_2.m
I=imread('eight.tif');
figure(1);
imshow(I);
title('1 image');
J=imnoise(I,'salt',0.08);
K=medfilt2(J);
figure(2);
imshow(J);
title('2 image');
figure(3);
imshow(K);
title('3 image');
imwr
www.eeworm.com/read/376899/9301693
asv cha2_2_5.asv
I1=imread('butterfly.tif');
I2=imread('butterfly_binary.tif');
figure;
imshow(I1);
figure;
imshow(I2);
I116=uint16(I1);
I216=uint16(I2);
J=immultiply(I116,I216);
figure;
imshow(J);
K=double
www.eeworm.com/read/376899/9301696
bmp cha2_2_6.bmp
www.eeworm.com/read/376899/9301708
m cha2_2_5.m
I1=imread('butterfly.tif');
I2=imread('butterfly_binary.tif');
figure;
imshow(I1);
figure;
imshow(I2);
I116=uint16(I1);
I216=uint16(I2);
J=immultiply(I116,I216);
figure;
imshow(J);
K=double
www.eeworm.com/read/376899/9301718
m cha2_2_6.m
I=imread('rice.png');
background=imopen(I,strel('disk',15));
Ip=imdivide(I,background);
figure;
imshow(I);
figure;
imshow(background);
figure;
imshow(Ip,[]);
K=double(Ip);
m=max(max(K));
n=
www.eeworm.com/read/376899/9301728
m cha2_2_1.m
I=imread('rice.png');
J=imread('cameraman.tif');
K=imadd(I,J,'uint16');
K0=imadd(I,J);
figure;
imshow(I);
figure;
imshow(J);
figure;
imshow(K,[]);
figure;
imshow(K0);