删除历史文档中的噪音和污渍以进行OCR识别

问题描述 投票:1回答:1

[嗨,我正在尝试清除历史文档中的尽可能多的噪音。

这些文档在整个文档上都有像小点一样的污点,并且会影响OCR和手写识别。除了从OpenCV进行图像去噪之外,还有一种更有效的方法来清洁此类图像吗?

enter image description here

image opencv image-processing ocr noise
1个回答
0
投票

一种潜在的方法是自适应阈值,执行一些形态学运算,并使用宽高比+轮廓区域滤波来消除噪声。在这里,我们可以按位进行操作,然后将得到的蒙版和输入图像进行清洁。结果如下:

enter image description here

由于您未指定语言,所以我在Python中实现了该语言

import cv2
import numpy as np

# Load image, create blank mask, convert to grayscale, Gaussian blur
# then adaptive threshold to obtain a binary image
image = cv2.imread('1.jpg')
mask = np.zeros(image.shape, dtype=np.uint8)
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
blur = cv2.GaussianBlur(gray, (7,7), 0)
thresh = cv2.adaptiveThreshold(blur,255,cv2.ADAPTIVE_THRESH_GAUSSIAN_C, cv2.THRESH_BINARY_INV,51,9)

# Create horizontal kernel then dilate to connect text contours
kernel = cv2.getStructuringElement(cv2.MORPH_RECT, (5,2))
dilate = cv2.dilate(thresh, kernel, iterations=2)

# Find contours and filter out noise using contour approximation and area filtering
cnts = cv2.findContours(dilate, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
cnts = cnts[0] if len(cnts) == 2 else cnts[1]
for c in cnts:
    peri = cv2.arcLength(c, True)
    approx = cv2.approxPolyDP(c, 0.04 * peri, True)
    x,y,w,h = cv2.boundingRect(c)
    area = w * h
    ar = w / float(h)
    if area > 1200 and area < 50000 and ar < 6:
        cv2.drawContours(mask, [c], -1, (255,255,255), -1)

# Bitwise-and input image and mask to get result
mask = cv2.cvtColor(mask, cv2.COLOR_BGR2GRAY)
result = cv2.bitwise_and(image, image, mask=mask)
result[mask==0] = (255,255,255) # Color background white

cv2.imshow('thresh', thresh)
cv2.imshow('mask', mask)
cv2.imshow('result', result)
cv2.waitKey()
© www.soinside.com 2019 - 2024. All rights reserved.