OpenCV | OpenCV将图像转换成黑白图像(二进制)

将图像转换为黑白涉及两个步骤。

  1. 将源图像读取为灰度图像。
  2. 使用您选择的阈值将灰度图像转换为二进制图像。

如果源图像是灰度图像,则可以将步骤1中的图像读取为原始图像,然后继续步骤2。以下示例说明了从灰度转换为二进制或黑白时阈值的工作方式。

原图

OpenCV | OpenCV将图像转换成黑白图像(二进制)_第1张图片

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)

输出图

OpenCV | OpenCV将图像转换成黑白图像(二进制)_第2张图片


参考

https://pythonexamples.org/python-opencv-convert-image-to-black-and-white/

 

你可能感兴趣的:(#,OpenCV,Image,and,Vision)