使用基本的三步算法从背景中分割前景的机器人: > 模糊> 阈值> 分割接触物体的分水岭用法:调用“ thresholdSegmentationBot”并按照说明进行操作。
如果您已将图像数据加载为双灰度、范围 [0,1] 图像 I, 使用 thresholdSegmentationTool 如下例所示:
I = imread('rice.png'); I = 双倍(I)/255; I = imtophat(I,strel('disk',12,0')); % 背景扣除TST = thresholdSegmentationTool(I); % 使用工具,然后单击“完成设置参数”
然后可以在 TST.FinalMask 访问最终的分割掩码, 以及 TST.ThrModel 中的分割模型。
阈值模型可以传递给用于批处理的 thresholdSegmentationHeadlessBot。
2021-05-29 21:02:43
17KB
matlab
1