Hi, I need an automatic captcha solver like the one in xrumer or zenno poster, does anyone know if there are components for automatic captcha solving using ocr?
I dont need a seo software, I am writing a seo software myself - I need a source code, or a component (.NET / ActiveX) for automatic captcha solving.. or at least any hints for the algorithm
Idea in captcha cracking is to clean up image and then run it through an OCR such as Tesseract (my preference) or Gocr. You might also have to train the OCR to work better with whatever font the captcha is using.
Cleaning up the image refers to removing stuff such as lines that intersect with characters or background noise.
Note: I started with neural networks, but I find that in a lot of cases templates based off of offsets in the character and with specified margins of error for each character work a lot better. Be aware of the tradeoffs in between the two approaches.
Use open CV or Open CV c# wrapper or Afroge .net libraries for image processing
if u want any other language libraries let me know i have good exp in image processing working on Recaptcha Ocr now..
If you're interested in using python, someone was doing their PhD dissertation on cracking captchas. You can find their examples, research, and findings at a website called wausita. (can't give the full url due to newbie status -- sorry)
A simple pixel by pixel analytics program for images in python can be achieved in only a few lines using the PIL (python image libraries).
If you aren't a programmer, I found a question on Stackoverflow about reCaptcha cracks. The page has a submitted answer with 54 likes for a website called captchakiller which provides a captcha breaking API.
This solution offers a RESTful API (meaning instead of importing a library, you can just curl or make requests to the API via the HTTP protocol.
These are very useful. Thanks for the introduction. I will try and implement them into my programs.
I think it probably requires a lot more work than just using the API though. I want to build a learning capability so it improves itself.
You could also use a captcha-breaking service. I'm writing a bot in Java right now and for example recaptcha has a top api and gives you the code to use it in nearly every programming language (well at least the established ones, no such exots like "brainfuck" )
Use train a neural network to recognize bineized characters(semi hard part) + Char Segmentation(really hard part) + loads of other secret things you must discover on your own because you will not be spoon feed(very easy part)= ocr
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.