OpenCV cvThreshold 函数解释

cvThreshold是opencv库中的一个函数

  作用:函数 cvThreshold 对单通道数组应用固定阈值操作。该函数的典型应用是对灰度图像进行阈值操作得到二值图像。(cvCmpS 也可以达到此目的) 或者是去掉噪声,例如过滤很小或很大象素值的图像点。本函数支持的对图像取阈值的方法由 threshold_type 确定。

  形式:void cvThreshold( const CvArr* src, CvArr* dst, double threshold, double max_value, int threshold_type );

  src:原始数组 (单通道 , 8-bit of 32-bit 浮点数)。

        dst:输出数组,必须与 src 的类型一致,或者为 8-bit。

  threshold:阈值

  max_value:使用 CV_THRESH_BINARY 和 CV_THRESH_BINARY_INV 的最大值。

  threshold_type:阈值类型

 

本函数支持的对图像取阈值的方法由 threshold_type 确定:

threshold_type=CV_THRESH_BINARY:

if src(x,y)>threshold  dst(x,y) = max_value; otherwise dst(x,y)= 0.

threshold_type=CV_THRESH_BINARY_INV:

if src(x,y)>threshold  dst(x,y) = 0 ; otherwise   dst(x,y) = max_value .

threshold_type=CV_THRESH_TRUNC:

if src(x,y)>threshold   dst(x,y) = threshold; otherwise dst(x,y) = src(x,y) .

threshold_type=CV_THRESH_TOZERO:

if (x,y)>threshold dst(x,y) = src(x,y); otherwise  dst(x,y) = 0.

threshold_type=CV_THRESH_TOZERO_INV:

if src(x,y)>threshold dst(x,y) = 0 ;otherwise  dst(x,y) = src(x,y).

下图是对几种取阈值方法的图形化描述:

2009年3月26日 - 老柯 - 菜鸟的朝圣之路

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值