在Matlab中,有人可以帮助可视化或绘制由函数'strel'仅为'磁盘'结构创建的形态结构元素吗?感谢。
答案 0 :(得分:3)
是的,这很奇怪,但我认为出于效率原因,strel
会返回一个特殊类型,它是一种结构元素类型。
You have to use the getnhood function as in this link,像这样:
se3 = strel('disk',15);
nhood = getnhood(se3);
imagesc(nhood); axis xy; colormap('gray');