Wandalizatorka88, bglee, they might know a few thigs about xingncode, The manage to baypase it for Cabal Online, I presume they could do it for this one too, but as far I know they have no interest in this game.
Since I dropped the project long time ago, I don't exactly remember what steps I did on photoshop so I can replicate it in C#Quote:
just wanted to share my latest efforts to get a clean captcha window without any noise letters are clear as u can see :3 captcha solving using c# is almost done
don't waste your time solving the captcha with ocr unfortunately success rate will be too low because of the background noise even with huge filtering with EmguCV and other tools some samples will always fail :/Quote:
Since I dropped the project long time ago, I don't exactly remember what steps I did on photoshop so I can replicate it in C#
Edit:
Got it in less steps now.. now I have to put it in C# xD
Quote:
[Only registered and activated users can see links. Click Here To Register...]
just wanted to share my latest efforts to get a clean captcha window without any noise letters are clear as u can see :3 captcha solving using c# is almost done
Cant you use ImageSearch to find those white arrows on your application?Quote:
don't waste your time solving the captcha with ocr unfortunately success rate will be too low because of the background noise even with huge filtering with EmguCV and other tools some samples will always fail :/
I think the way he did it is:Quote:
Cant you use ImageSearch to find those white arrows on your application?
i've used EmguCv with some option to get this result but unfortunately you won't get the same result with all captcha colors that's why i'm trying a different methods now to get the optimal and fastest way to recognize itQuote:
I think the way he did it is:
Put a form overlay to X/Y (location of Captcha).
Search for Pixel colors that the captcha uses (or simply, If not White = MySearchedColor)
Then, print the found / Matching color.
To make sure and remove the captcha noises, he can contrast it to make it black or white.
After that, he can now read clearly what the colors are.
Maybe at this point he can now use the Tesseract / OCR to distinguish the "Letters".
Then, he'll just put it this way:
If Textbox.text = S then
Send Key "S"
ElseIf Textbox.text = W then
Send Key "W"
And so on...
It may be longer that way. :)
If ($xl == 0) Then
$Res = _ImageSearchArea("checker.bmp", 0, 630, 412, 713, 467, $xl, $yl, 60)
$Res = _ImageSearchArea("checker3.bmp", 0, 630, 412, 713, 467, $xl, $yl, 60)
$Res = _ImageSearchArea("checker2.bmp", 0, 630, 412, 713, 467, $xl, $yl, 60)
$Res = _ImageSearchArea("checker4.bmp", 0, 630, 412, 713, 467, $xl, $yl, 60)
If ($xl > 0) Then
Sleep(800)
$Res = _ImageSearchArea("checker.bmp", 0, 630, 412, 713, 467, $xl, $yl, 60)
$Res = _ImageSearchArea("checker4.bmp", 0, 630, 412, 713, 467, $xl, $yl, 60)
$Res = _ImageSearchArea("checker3.bmp", 0, 630, 412, 713, 467, $xl, $yl, 60)
$Res = _ImageSearchArea("checker2.bmp", 0, 630, 412, 713, 467, $xl, $yl, 60)