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