代码搜索:bwmorph

找到约 131 项符合「bwmorph」的源代码

代码结果 131
www.eeworm.com/read/300712/13897502

m demo.m

% read in a sample image -- also see letters.png, bagel.png img = imread('mushroom.png'); imshow(img); % the standard skeletonization: imshow(bwmorph(img,'skel',inf)); % the new method: imsh
www.eeworm.com/read/191214/8432931

m example10_7.m

I1=imread('saturn.tif'); I2=im2bw(I1); figure,imshow(I2) I3=imnoise(I2,'salt & pepper'); figure,imshow(I3) I4= bwmorph(I3,'open'); figure,imshow(I4) I5= bwmorph(I4,'close'); figure,imshow(I5)
www.eeworm.com/read/385435/8805422

m ransetigujia.m

f=imread('12.jpg'); imshow(f); f=im2double(f); h=fspecial('gaussian',25,15) g=imfilter(f,h,'replicate'); figure,imshow(g);%平滑处理 g=im2bw(g,1.5*graythresh(g)); figure,imshow(g); s=bwmorph(g,
www.eeworm.com/read/282136/9117983

m circlerecog.m

function circleRecog input=imread('another.jpg');%anothernewcircles.jpg input=im2bw(input); % subplot(2,2,1); % imshow(input,[]); input = bwmorph(bwmorph(bwmorph(input,'spur'),'clean'),'fil
www.eeworm.com/read/378824/9215530

m training.m

function S = Training() [f map] = imread('train.bmp'); f = ~f; imshow(f); f = bwmorph(f, 'thin', Inf); f = imdilate(f, ones(3,3)); [L, num] = bwlabel(f); S = regionprops(L, 'Image', 'Centro
www.eeworm.com/read/378824/9215535

asv training.asv

%function S = Training() [f map] = imread('train.bmp'); f = ~f; imshow(f); f = bwmorph(f, 'thin', Inf); [L, num] = bwlabel(f); S = regionprops(L, 'Image', 'Centroid'); for i = 1:10
www.eeworm.com/read/365868/9842660

m example10_7.m

I1=imread('saturn.tif'); I2=im2bw(I1); figure,imshow(I2) I3=imnoise(I2,'salt & pepper'); figure,imshow(I3) I4= bwmorph(I3,'open'); figure,imshow(I4) I5= bwmorph(I4,'close'); figure,imshow(I5)
www.eeworm.com/read/356085/10237356

m example10_7.m

I1=imread('saturn.tif'); I2=im2bw(I1); figure,imshow(I2) I3=imnoise(I2,'salt & pepper'); figure,imshow(I3) I4= bwmorph(I3,'open'); figure,imshow(I4) I5= bwmorph(I4,'close'); figure,imshow(I5)
www.eeworm.com/read/160256/10548289

m example10_7.m

I1=imread('saturn.tif'); I2=im2bw(I1); figure,imshow(I2) I3=imnoise(I2,'salt & pepper'); figure,imshow(I3) I4= bwmorph(I3,'open'); figure,imshow(I4) I5= bwmorph(I4,'close'); figure,imshow(I5)
www.eeworm.com/read/464287/7166607

m b8.m

I1=imread('saturn.tif'); I2=im2bw(I1); figure,imshow(I2) I3=imnoise(I2,'salt & pepper'); figure,imshow(I3) I4= bwmorph(I3,'open'); figure,imshow(I4) I5= bwmorph(I4,'close'); figure,imshow(I5)