Skip to content

Instantly share code, notes, and snippets.

@lcd1232
Forked from christianroman/test.py
Created September 17, 2016 20:29
Show Gist options
  • Save lcd1232/79ffd6216bb1b00475d8c29a11a742ab to your computer and use it in GitHub Desktop.
Save lcd1232/79ffd6216bb1b00475d8c29a11a742ab 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