Software Coding For Manipulation Of Known Poker Site



I don't know much about programming but this is what I would do:

Poker Stars on Computer A.

Screen Sharing software w/ Computer B.

Image Scraper + Bot On Computer B.

Computer B uses Screen sharing software to make moves for Computer A.

That way you have absolutely 0 bot software running on the comp running pstars.
 
you should be able to train a neural network to recognize the cards really quickly and ocr can probably pick out bet values without much trouble
 
you should be able to train a neural network to recognize the cards really quickly and ocr can probably pick out bet values without much trouble

This would be a very good start. If the cards are consistently located on the screen, things will be a lot easier. The reason Sikuli runs so slow is that it is doing a full screen search for a certain region, which is hard for computers to do.

This is almost comparable to breaking captchas for anyone who has tried. There are 3 steps to doing it:

prepping the image
separating the letters
OCRing the letters

the 1st and 3rd ones are pretty easy. The 2nd one is a bitch and a half for all but the simplest captchas.