Removendo linhas ruidosas de fundo do Captcha Image usando o PYTHON PIL

Eu tenho uma imagem captcha processada (Ampliada) parecido com:

Como você pode ver, o tamanho da fonte do "TEXTO" é um pouco maior que a largura das Linhas Ruidosas.
Então eu preciso de um algoritmo ou código para remover as linhas ruidosas desta imagem.

Com a ajuda da biblioteca Python PIL e o algoritmo de corte mencionado abaixo, eu não obtenho a imagem de saída que poderia ser facilmente lida pelos OCRs.

Aqui está o código Python que eu tentei:

import PIL.Image
import sys

# python chop.py [chop-factor] [in-file] [out-file]

chop = int(sys.argv[1])
image = PIL.Image.open(sys.argv[2]).convert('1')
width, height = image.size
data = image.load()

# Iterate through the rows.
for y in range(height):
    for x in range(width):

        # Make sure we're on a dark pixel.
        if data[x, y] > 128:
            continue

        # Keep a total of non-white contiguous pixels.
        total = 0

        # Check a sequence ranging from x to image.width.
        for c in range(x, width):

            # If the pixel is dark, add it to the total.
            if data[c, y] < 128:
                total += 1

            # If the pixel is light, stop the sequence.
            else:
                break

        # If the total is less than the chop, replace everything with white.
        if total <= chop:
            for c in range(total):
                data[x + c, y] = 255

        # Skip this sequence we just altered.
        x += total


# Iterate through the columns.
for x in range(width):
    for y in range(height):

        # Make sure we're on a dark pixel.
        if data[x, y] > 128:
            continue

        # Keep a total of non-white contiguous pixels.
        total = 0

        # Check a sequence ranging from y to image.height.
        for c in range(y, height):
            # If the pixel is dark, add it to the total.
            if data[x, c] < 128:
                total += 1

            # If the pixel is light, stop the sequence.
            else:
                break

        # If the total is less than the chop, replace everything with white.
        if total <= chop:
            for c in range(total):
                data[x, y + c] = 255

        # Skip this sequence we just altered.
        y += total

image.save(sys.argv[3])

Então, basicamente, eu gostaria de saber um algoritmo / código melhor para se livrar do ruído e, assim, tornar a imagem legível pelo OCR (Tesseract ou pytesser).

questionAnswers(3)

yourAnswerToTheQuestion