Halcon阈值分割

Posted larry-xia

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Halcon阈值分割相关的知识,希望对你有一定的参考价值。

threshold(Image : Region : MinGray, MaxGray : )

全局阈值分割,用户指定硬阈值

 

binary_threshold(Image : Region : Method, LightDark : UsedThreshold)

全局阈值分割,指定计算阈值

 

fast_threshold(Image : Region : MinGray, MaxGray, MinSize : )

使用全局阈值快速分割

 

auto_threshold(Image : Regions : Sigma : )

先通过高斯滤波对灰度直方图进行平滑,然后计算出极小值点,然后在极小值点处对图像进行分割,Regions数目为minima+1

 

dyn_threshold(OrigImage, ThresholdImage : RegionDynThresh : Offset, LightDark : )

使用局部阈值对图像进行分割,一般ThresholdImage由OrigImage进行平滑滤波得到,滤波模板尺寸越大,则找到的区域越大,一般设置模板尺寸为要提取目标的直径值的2倍。

 

local_threshold(Image : Region : Method, LightDark, GenParamName, GenParamValue : )

局部阈值分割,基于局部的均值和标准差

以上是关于Halcon阈值分割的主要内容,如果未能解决你的问题,请参考以下文章

阈值分割算子之OSTU算法

Halcon阈值化算子dual_threshold和var_threshold的理解

利用Halcon寻找出边缘突出的部分

阈值分割与区域分割

阈值分割与区域分割

Halcon常用算子02