代码搜索:bwmorph
找到约 131 项符合「bwmorph」的源代码
代码结果 131
www.eeworm.com/read/160256/10548276
m example10_2.m
I=imread('cameraman.tif');
figure,imshow(I)
J=im2bw(I);
figure,imshow(J)
BW1= bwmorph(J,'dilate');
figure,imshow(BW1)
www.eeworm.com/read/160256/10548319
m example10_4.m
I=imread('cameraman.tif');
figure,imshow(I)
J=im2bw(I);
figure,imshow(J)
BW1= bwmorph(J,'erode');
figure,imshow(BW1)
www.eeworm.com/read/464287/7166600
m b11.m
I=imread('cameraman.tif');
figure,imshow(I)
J=im2bw(I);
figure,imshow(J)
BW1= bwmorph(J,'erode');
figure,imshow(BW1)
www.eeworm.com/read/464287/7166690
m b15.m
I=imread('cameraman.tif');
figure,imshow(I)
J=im2bw(I);
figure,imshow(J)
BW1= bwmorph(J,'dilate');
figure,imshow(BW1)
www.eeworm.com/read/143830/12837938
m r.m
BW1=imread('a1.bmp','bmp')
imshow(BW1);
BW2=bwmorph(BW1,'remove');
BW3=bwmorph(BW1,'skel',Inf);
imshow(BW2)
figure,imshow(Bw3)
www.eeworm.com/read/305889/13757239
m example10_2.m
I=imread('cameraman.tif');
figure,imshow(I)
J=im2bw(I);
figure,imshow(J)
BW1= bwmorph(J,'dilate');
figure,imshow(BW1)
www.eeworm.com/read/305889/13757247
m example10_4.m
I=imread('cameraman.tif');
figure,imshow(I)
J=im2bw(I);
figure,imshow(J)
BW1= bwmorph(J,'erode');
figure,imshow(BW1)
www.eeworm.com/read/492717/6407972
m example10_2.m
I=imread('cameraman.tif');
figure,imshow(I)
J=im2bw(I);
figure,imshow(J)
BW1= bwmorph(J,'dilate');
figure,imshow(BW1)
www.eeworm.com/read/492717/6407980
m example10_4.m
I=imread('cameraman.tif');
figure,imshow(I)
J=im2bw(I);
figure,imshow(J)
BW1= bwmorph(J,'erode');
figure,imshow(BW1)
www.eeworm.com/read/479088/6699285
m morph.m
function mask = morph(data,clea,majorit,thicke,clos)
%
% Determines the kind of morphological operation.
%
[m,n]=size(data);
mask1=bwmorph(data,'clean',clea);
mask