Hello,
Here is a small release for people who want to make an external lol script.
SpaceGlider uses a screenshot to read the attack speed.
A machine can not read out numbers from a picture. Therefore Tesseract was used, because this is probably the best open source OCR.
The advantage of the training data of SpaceGlider is:
- Size of the HUD doesn't matter
- Very high accuracy
- Much faster (about 60 ms faster)
I initialized it like this:
Meanwhile there is an API to read out the attack speed.
But nobody knows if it will stay forever, because this API is quite abused.
Credits to trickory#0616, who trained the font for Tesseract. <3
[Only registered and activated users can see links. Click Here To Register...]
Here is a small release for people who want to make an external lol script.
SpaceGlider uses a screenshot to read the attack speed.
A machine can not read out numbers from a picture. Therefore Tesseract was used, because this is probably the best open source OCR.
The advantage of the training data of SpaceGlider is:
- Size of the HUD doesn't matter
- Very high accuracy
- Much faster (about 60 ms faster)
I initialized it like this:
Code:
instance = new Tesseract();
instance.setTessVariable("user_defined_dpi", "1000");
instance.setTessVariable("tessedit_char_whitelist", "0123456789.");
instance.setDatapath("./tessdata");
instance.setLanguage("LoL");
But nobody knows if it will stay forever, because this API is quite abused.
Credits to trickory#0616, who trained the font for Tesseract. <3
[Only registered and activated users can see links. Click Here To Register...]