在 Opencv 中使用 MSER 从图像中提取文本 python
Extract text from image using MSER in Opencv python
我想使用 mser 检测图像中的文本并删除所有非文本区域。使用下面的代码我能够检测到文本:
import cv2
import sys
mser = cv2.MSER_create()
img = cv2.imread('signboard.jpg')
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
vis = img.copy()
regions, _ = mser.detectRegions(gray)
hulls = [cv2.convexHull(p.reshape(-1, 1, 2)) for p in regions]
cv2.polylines(vis, hulls, 1, (0, 255, 0))
cv2.imshow('img', vis)
if cv2.waitKey(0) == 9:
cv2.destroyAllWindows()
如何删除所有非文本区域并获得只有文本的二值图像?我搜索了很多但找不到任何示例代码来使用 python 和 opencv.
您可以使用找到的轮廓得到二值图像。只需将填充的轮廓绘制到白色的空 img 即可。
mask = np.zeros((img.shape[0], img.shape[1], 1), dtype=np.uint8)
for contour in hulls:
cv2.drawContours(mask, [contour], -1, (255, 255, 255), -1)
注意:有关 drawContours
的更多信息,请参见 the official docs
然后您可以使用它来仅提取文本:
text_only = cv2.bitwise_and(img, img, mask=mask)
我想使用 mser 检测图像中的文本并删除所有非文本区域。使用下面的代码我能够检测到文本:
import cv2
import sys
mser = cv2.MSER_create()
img = cv2.imread('signboard.jpg')
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
vis = img.copy()
regions, _ = mser.detectRegions(gray)
hulls = [cv2.convexHull(p.reshape(-1, 1, 2)) for p in regions]
cv2.polylines(vis, hulls, 1, (0, 255, 0))
cv2.imshow('img', vis)
if cv2.waitKey(0) == 9:
cv2.destroyAllWindows()
如何删除所有非文本区域并获得只有文本的二值图像?我搜索了很多但找不到任何示例代码来使用 python 和 opencv.
您可以使用找到的轮廓得到二值图像。只需将填充的轮廓绘制到白色的空 img 即可。
mask = np.zeros((img.shape[0], img.shape[1], 1), dtype=np.uint8)
for contour in hulls:
cv2.drawContours(mask, [contour], -1, (255, 255, 255), -1)
注意:有关 drawContours
的更多信息,请参见 the official docs然后您可以使用它来仅提取文本:
text_only = cv2.bitwise_and(img, img, mask=mask)