You can use the cv2.threshold
function to apply image thresholding to an image.
Thresholding allows you to turn all pixels above a certain greyscale value either white or black. It is useful as a pre-processing step for image contouring.
Before you apply thresholding, your image should be greyscale or converted to greyscale.
To apply thresholding, run:
Above, replace 127 with the threshold value.
The code above will automatically turn any pixel whose greyscale value is over 127 with black and any pixel whose value is under 127 with white. If you need the opposite, use cv.THRESH_BINARY_INV.
OpenCV can be used with the open source supervision Python package.
supervision provides an extensive range of functionalities for working with computer vision models. With supervision, you can:
1. Process and filter detections and segmentation masks from a range of popular models (YOLOv5, Ultralytics YOLOv8, MMDetection, and more).
2. Process and filter classifications.
3. Compute confusion matrices.
And more! To learn about the full range of functionality in supervision, check out the supervision documentation.