I want to compare the performance of various thresholding methods. Literally, I found various thresholding methods are
- Histogram shape based methods (Ex:- Otsu Method)
- Clustering based methods
- Entropy based methods
- Attribute similarity methods
- Locally Adaptive Thresholding
I dont know whether python opencv2 has the above mentioned thresholding methods implementation are not. Any other python library has its implementations ?
I found some Links but thats are very basic :-
http://docs.opencv.org/doc/tutorials/imgproc/threshold/threshold.html
http://opencvpython.blogspot.in/2013/05/thresholding.html
(Local thresholding, Global thresholding, Adaptive thresholding, binary, binary_inverted etc., only exists in python opencv. Thast I found)
Can anyone help me to implement the above mentioned thresholding types ? Or any idea to accomplish my task ?
Thanks in adnvance...