cvThreshold是opencv庫中的一個函式。
函式 cvThreshold 對單通道數組套用固定閾值操作。該函式的典型套用是對灰度圖像進行閾值操作得到二值圖像。
基本介紹
- 外文名:cvThreshold
- 定義:opencv庫中的一個函式
- 形式:double cvThreshold等
- 參數:src等
作用,形式,參數說明,
作用
形式
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=CV_THRESH_BINARY:如果 src(x,y)>threshold ,dst(x,y) = max_value; 否則,dst(x,y)=0;
threshold_type=CV_THRESH_BINARY_INV:如果 src(x,y)>threshold,dst(x,y) = 0; 否則,dst(x,y) = max_value.
threshold_type=CV_THRESH_TRUNC:如果 src(x,y)>threshold,dst(x,y) = max_value; 否則dst(x,y) = src(x,y).
threshold_type=CV_THRESH_TOZERO:如果src(x,y)>threshold,dst(x,y) = src(x,y) ; 否則 dst(x,y) = 0。
threshold_type=CV_THRESH_TOZERO_INV:如果 src(x,y)>threshold,dst(x,y) = 0 ; 否則dst(x,y) = src(x,y).