2 回答
TA贡献1829条经验 获得超4个赞
这是在 Python/OpenCV 中执行此操作的一种方法。
读取输入
增加对比度
将原始图像转换为灰度
自适应阈值
使用阈值图像使对比度增加图像上的背景变白
保存结果
输入:
import cv2
import numpy as np
# read image
img = cv2.imread("math_diagram.jpg")
# convert img to grayscale
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
# do adaptive threshold on gray image
thresh = cv2.adaptiveThreshold(gray, 255, cv2.ADAPTIVE_THRESH_MEAN_C, cv2.THRESH_BINARY, 21, 15)
# make background of input white where thresh is white
result = img.copy()
result[thresh==255] = (255,255,255)
# write results to disk
cv2.imwrite("math_diagram_threshold.jpg", thresh)
cv2.imwrite("math_diagram_processed.jpg", result)
# display it
cv2.imshow("THRESHOLD", thresh)
cv2.imshow("RESULT", result)
cv2.waitKey(0)
阈值图像:
结果:
TA贡献1851条经验 获得超3个赞
您可以使用任何本地二值化方法。在 OpenCV 中,有一种称为 Wolf-Julion 局部二值化的方法可以应用于输入图像。以下是代码片段作为示例:
import cv2
image = cv2.imread('input.jpg')
gray = cv2.cvtColor(image, cv2.COLOR_BGR2HSV)[:,:,2]
T = cv2.ximgproc.niBlackThreshold(gray, maxValue=255, type=cv2.THRESH_BINARY_INV, blockSize=81, k=0.1, binarizationMethod=cv2.ximgproc.BINARIZATION_WOLF)
grayb = (gray > T).astype("uint8") * 255
cv2.imshow("Binary", grayb)
cv2.waitKey(0)
上面代码的输出结果如下。请注意,要使用ximgproc模块,您需要安装 opencv contrib 包。
添加回答
举报