?? iopen.m
字號(hào):
%IOPEN Morphological opening%% B = IOPEN(A, SE [,N])%% Return the image A after morphological opening with the structuring% element SE. N (default to 1) erosions then N dilations are performed.%% SEE ALSO: iclose imorph%%% Copyright (c) Peter Corke, 1999 Machine Vision Toolbox for Matlabfunction b = iopen(a, se, n) if nargin == 2, n = 1; end b = a; for i=1:n, b = imorph(b, se, 'min'); end for i=1:n, b = imorph(b, se, 'max'); end
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -