Apply a thresholding operation using cv2.threshold() with a threshold value of 100 and using the cv2.THRESH_BINARY thresholding type.
Apply an adaptive thresholding operation using cv2.adapativeThreshold() ,cv2.ADAPTIVE_THRESH_MEAN_C, C=2 and blockSize=9.
Apply Otsu's thresholding using the cv2.THRESH_BINARY thresholding type.
Apply triangle thresholding using the cv2.THRESH_BINARY thresholding type.
Apply Otsu's thresholding using scikit-image.
Apply triangle thresholding using scikit-image.
Apply Niblack's thresholding using scikit-image.
Apply Sauvola's thresholding using scikit-image and a window size of 25.
Modify the thresholding_example.py script in order to make use of np.arange(), with the purpose of defining the threshold ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month, and much more.