threshold-全局固定阈值分割
Binary Threshold-自动全局阈值分割
dyn_threshold-局部动态阈值分割
var_threshold算子-均值和标准偏差局部阈值分割
dual_threshold-双重阈值分割(有符号图像的阈值算子)
auto_threshold-自动全局阈值分割
fast_threshold-快速全局阈值分割
watersheds-分水岭算法分割
形态学 + 连通域处理方法
距离变换 + 分水岭分割方法
distance_transform (SelectedRegions, DistanceImage, 'octagonal', 'true', Width, Height)
convert_image_type (DistanceImage, ImageConverted, 'byte')
invert_image (ImageConverted, ImageInvert)
scale_image_max (ImageInvert, ImageScaleMax)
watersheds_threshold (ImageScaleMax, Basins, 30)
select_shape (Basins, SelectedBasins, 'area', 'and', 2000, 50000)
gen_contour_region_xld (SelectedBasins, Contours, 'border')
如果没有全部导出,则需要全部浏览下