From acc46fc3497a66a427b795b4a22c6e71d69185a1 Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Sat, 13 Dec 2014 15:56:57 +0100 Subject: Update --- pyload/plugins/ocr/NetloadIn.py | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 pyload/plugins/ocr/NetloadIn.py (limited to 'pyload/plugins/ocr/NetloadIn.py') diff --git a/pyload/plugins/ocr/NetloadIn.py b/pyload/plugins/ocr/NetloadIn.py deleted file mode 100644 index 1ba710316..000000000 --- a/pyload/plugins/ocr/NetloadIn.py +++ /dev/null @@ -1,29 +0,0 @@ -# -*- coding: utf-8 -*- - -from pyload.plugins.OCR import OCR - - -class NetloadIn(OCR): - __name = "NetloadIn" - __type = "ocr" - __version = "0.10" - - __description = """Netload.in ocr plugin""" - __license = "GPLv3" - __authors = [("pyLoad Team", "admin@pyload.org")] - - - def __init__(self): - OCR.__init__(self) - - - def get_captcha(self, image): - self.load_image(image) - self.to_greyscale() - self.clean(3) - self.clean(3) - self.run_tesser(True, True, False, False) - - self.result_captcha = self.result_captcha.replace(" ", "")[:4] # cut to 4 numbers - - return self.result_captcha -- cgit v1.2.3