[pixkit image] thresholding: image thresholding - yunfuliu/pixkit GitHub Wiki
[local] LAT2011
Local adaptive thresholding.
[Abbr] Local Adaptive Thresholding (LAT)
[Reference] T.Romen Singh, Sudipta Roy, O.Imocha Singh, Tejmani Sinam and Kh.Manglem Singh, "A New Local Adaptive Thresholding Technique in Binarization," IJCSI International Journal of Computer Science Issues, Vol. 8, Issue 6, No 2, November 2011.
[Developer] Li-Ying Chang ([email protected])
C++: bool thresholding::LAT2011(const cv::Mat &src,cv::Mat &dst, int windowSize, int k)
Parameters:
- src - The source image.
- dst - The destination image.
- windowSize - Window size.
- K - It's a bias to control the adaptation level for different threshold value. Its range is [0,1].
Example:
LAT2011(src,dst,9,0.0001);