Skip to content

Instantly share code, notes, and snippets.

@Bilio
Forked from christianroman/test.py
Created June 4, 2018 17:51
Show Gist options
  • Save Bilio/28883dc33b7bfc51fe93b9dcb2c44a5c to your computer and use it in GitHub Desktop.
Save Bilio/28883dc33b7bfc51fe93b9dcb2c44a5c 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