summaryrefslogtreecommitdiffstats
path: root/captcha/ShareonlineBiz.py
diff options
context:
space:
mode:
authorGravatar spoob <spoob@gmx.de> 2009-06-23 23:11:17 +0200
committerGravatar spoob <spoob@gmx.de> 2009-06-23 23:11:17 +0200
commita531493acbaa0cb94d60e7ae353a8bf4a92da900 (patch)
tree862e1b6d603e162d462811c3dc76bc1aba3f987b /captcha/ShareonlineBiz.py
parentcli able to delete links in queue (diff)
downloadpyload-a531493acbaa0cb94d60e7ae353a8bf4a92da900.tar.xz
fixed 4chan user wish
Diffstat (limited to 'captcha/ShareonlineBiz.py')
-rw-r--r--captcha/ShareonlineBiz.py9
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')