www.gusucode.com > images 案例代码 matlab源码程序 > images/ReflectAStructuringElementExample.m

    %% Reflect a Structuring Element
%  
%%
% Create a structuring element.
se = strel([0 0 1; 0 0 0; 0 0 0])
%%
% Look at the neighborhood.
se.Neighborhood
%%
% Reflect it.
se2 = reflect(se)
%%
% Look at the reflected neighborhood.
se2.Neighborhood