代码搜索:bwmorph
找到约 131 项符合「bwmorph」的源代码
代码结果 131
www.eeworm.com/read/310212/13655001
m bwmorph.m
function [cout,lut] = bwmorph(a,op,n)
%BWMORPH Perform morphological operations on binary image.
% BW2 = BWMORPH(BW1,OPERATION) applies a specific
% morphological operation to the binary image
www.eeworm.com/read/207466/15270723
m bwmorph.m
% <mark>BWMORPH</mark> 僶僀僫儕僀儊乕僕偵宍懺妛揑墘嶼傪幚峴
%
% BW2 = <mark>BWMORPH</mark>(BW1,OPERATION) 偼丄僶僀僫儕僀儊乕僕 BW1 偵愝掕偟偨
% 宍懺妛揑墘嶼傪揔梡偟傑偡丅
%
% BW2 = <mark>BWMORPH</mark>(BW1,OPERATION,N) 偼丄墘嶼傪 N 夞揔梡偟傑偡丅N 傪 Inf 偵
% 愝掕偡傞偙偲傕偱偒傑偡丅偙偺応崌丄墘嶼偼張棟寢壥偑曄壔偟側偔 ...
www.eeworm.com/read/380499/9144616
m filter_bwmorph.m
function varargout = filter_bwmorph(varargin)
if nargin == 0
p1 = struct( ...
'Name', 'Operation', ...
'Style', 'popup', ...
'DefaultValue', 1, ...
'Items', {{ ...
www.eeworm.com/read/163747/10147481
m filter_bwmorph.m
function varargout = filter_bwmorph(varargin)
if nargin == 0
p1 = struct( ...
'Name', 'Operation', ...
'Style', 'popup', ...
'DefaultValue', 1, ...
'Items', {{ ...
www.eeworm.com/read/309305/13674713
m filter_bwmorph.m
function varargout = filter_bwmorph(varargin)
if nargin == 0
p1 = struct( ...
'Name', 'Operation', ...
'Style', 'popup', ...
'DefaultValue', 1, ...
'Items', {{ ...
www.eeworm.com/read/308927/13687328
m filter_bwmorph.m
function varargout = filter_bwmorph(varargin)
if nargin == 0
p1 = struct( ...
'Name', 'Operation', ...
'Style', 'popup', ...
'DefaultValue', 1, ...
'Items', {{ ...
www.eeworm.com/read/462042/7211825
txt 代码17-3.txt
% 这个程序实现了对二值图像的数学形态学操作
% 第一部分:输入图像到MATLAB
fprintf('\n This program performs morphological operations on binary image')
fprintf('\n Entering the image for MATLAB...')
fprintf('\n Note that if Yo
www.eeworm.com/read/133469/14042271
m bwtest.m
a=imread('circles.tif');
figure(1)
imshow(a);
b=bwmorph(a, 'spur', Inf);
figure(2)
imshow(b);
www.eeworm.com/read/464843/7060873
m preprocessing.m
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% preprocessing for the fingerprint identification
% written by zhang_rui at Chinese Academy of Science
% E-mail:zhangrui05@mails.g
www.eeworm.com/read/455411/7372483
txt fringe_processing.txt
a=imread('0.bmp');
b=medfilt2(a,[5 7]);
figure(1),imshow(b);
BW=im2bw(b,0.3);
se=strel('line',10,10);
BW1=imerode(BW,se);
figure(2),imshow(BW1);
y=imclo