texttt{thresh}$}{texttt{maxVal}}{otherwise}" src="http://files.jb51.net/file_images/article/201301/2013010314344055.png">
texttt{thresh}$}{texttt{src}(x,y)}{otherwise}" src="http://files.jb51.net/file_images/article/201301/2013010314344057.png" >
return __value > __thresh ? __thresh : 0;
};
閾值化為0
公式表示是:
影像表示是:
這個則是小於閾值的都化為0處理。函數實作:
var CV_THRESH_TOZERO = function(
return __value > __thresh ? __value : 0;
};
反閾值化為0
公式表示是:
影像表示是:
這個則在超過閾值時候置為0,函數實作是:
var CV_THRESH_TOZERO_INV = function(__value, __thresh, __maxVal){
return __value > __thresh ? 0 : __value;
};
然後我們做一個函數對整幅圖進行上面這幾種類型的閾值處理。
複製程式碼
程式碼如下:var threshold = function(__s__sQs__s a__srcth maxh__s a__s__s__s maxh__s__s__s maxh__s a__s__s maxh__s__s__s maxh. , __dst){ (__src && __thresh) || error(arguments.callee, IS_UNDEFINED_OR_NULL/* {line} */);
if(__src.type && __src.type == "CV_GRAY"){
var width = __src.col,
height = __src.row,
sData = __src.data,
dst = __dst || new Mat(height, width, CV_GRAY),
Data = dst.data,
maxVal = __maxVal || 255,
threshouldType = __thresholdType || CV_THRESH_BINARY;
var i, j, offset;
var i, j, offset;
var i, j, offset;
for(j = width; j--;){
offset = i * width j;
dData[offset] = threshouldType(sData[offset], __thresh, maxVal);
}
}
}else{
error(arguments.callee, UNSPPORT_DATA_TYPE/* {line} */);
}
return dst
};
這個函數比較簡單,就是對每個像素點賦值為
程式碼如下:
threshouldType(sData[offset], __thresh, maxVal)
傳回的數值。