diff options
author | spoob <spoob@gmx.de> | 2009-06-23 23:11:17 +0200 |
---|---|---|
committer | spoob <spoob@gmx.de> | 2009-06-23 23:11:17 +0200 |
commit | a531493acbaa0cb94d60e7ae353a8bf4a92da900 (patch) | |
tree | 862e1b6d603e162d462811c3dc76bc1aba3f987b /captcha/ShareonlineBiz.py | |
parent | cli able to delete links in queue (diff) | |
download | pyload-a531493acbaa0cb94d60e7ae353a8bf4a92da900.tar.xz |
fixed 4chan user wish
Diffstat (limited to 'captcha/ShareonlineBiz.py')
-rw-r--r-- | captcha/ShareonlineBiz.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/captcha/ShareonlineBiz.py b/captcha/ShareonlineBiz.py index 1e3fc6214..5c8e682f4 100644 --- a/captcha/ShareonlineBiz.py +++ b/captcha/ShareonlineBiz.py @@ -6,23 +6,28 @@ class ShareonlineBiz(OCR): OCR.__init__(self) def get_captcha(self, image): + urllib.urlretrieve("http://www.share-online.biz/captcha.php", "captcha.jpeg") self.load_image(image) self.to_greyscale() self.image = self.image.resize((160, 50)) self.pixels = self.image.load() self.threshold(1.85) self.eval_black_white(240) + self.derotate_by_average() letters = self.split_captcha_letters() final = "" + i = 0 for letter in letters: self.image = letter - self.run_tesser() + self.image.save(str(i) + ".jpeg") + self.run_gocr() final += self.result_captcha + i += 1 return final if __name__ == '__main__': ocr = ShareonlineBiz() - print ocr.get_captcha('captcha.php3.jpeg') + print ocr.get_captcha('captcha.jpeg') |