Skip to content

Instantly share code, notes, and snippets.

@JonatanFlores
Forked from christianroman/test.py
Created November 8, 2016 16:39
Show Gist options
  • Save JonatanFlores/f76a1c38633704bf6ca9f2c54c51b642 to your computer and use it in GitHub Desktop.
Save JonatanFlores/f76a1c38633704bf6ca9f2c54c51b642 to your computer and use it in GitHub Desktop.
Bypass Captcha using 10 lines of code with Python, OpenCV & Tesseract OCR engine
import cv2.cv as cv
import tesseract
gray = cv.LoadImage('captcha.jpeg', cv.CV_LOAD_IMAGE_GRAYSCALE)
cv.Threshold(gray, gray, 231, 255, cv.CV_THRESH_BINARY)
api = tesseract.TessBaseAPI()
api.Init(".","eng",tesseract.OEM_DEFAULT)
api.SetVariable("tessedit_char_whitelist", "0123456789abcdefghijklmnopqrstuvwxyz")
api.SetPageSegMode(tesseract.PSM_SINGLE_WORD)
tesseract.SetCvImage(gray,api)
print api.GetUTF8Text()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment