diff options
| author | 2014-12-13 15:56:57 +0100 | |
|---|---|---|
| committer | 2014-12-13 15:56:57 +0100 | |
| commit | acc46fc3497a66a427b795b4a22c6e71d69185a1 (patch) | |
| tree | 2d315b838a76435fc456b972c99c28d1732b2f70 /pyload/plugin/ocr/NetloadIn.py | |
| parent | Code fixes (diff) | |
| download | pyload-acc46fc3497a66a427b795b4a22c6e71d69185a1.tar.xz | |
Update
Diffstat (limited to 'pyload/plugin/ocr/NetloadIn.py')
| -rw-r--r-- | pyload/plugin/ocr/NetloadIn.py | 29 | 
1 files changed, 29 insertions, 0 deletions
| diff --git a/pyload/plugin/ocr/NetloadIn.py b/pyload/plugin/ocr/NetloadIn.py new file mode 100644 index 000000000..f15ab4449 --- /dev/null +++ b/pyload/plugin/ocr/NetloadIn.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- + +from pyload.plugin.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 | 
