将图像转换为黑白涉及两个步骤。
- 将源图像读取为灰度图像。
- 使用您选择的阈值将灰度图像转换为二进制图像。
如果源图像是灰度图像,则可以将步骤1中的图像读取为原始图像,然后继续步骤2。以下示例说明了从灰度转换为二进制或黑白时阈值的工作方式。
原图
import cv2
#read image
img_grey = cv2.imread('molecule.png', cv2.IMREAD_GRAYSCALE)
# define a threshold, 128 is the middle of black and white in grey scale
thresh = 128
# assign blue channel to zeros
img_binary = cv2.threshold(img_grey, thresh, 255, cv2.THRESH_BINARY)[1]
#save image
cv2.imwrite('black-and-white.png',img_binary)