Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bschlenk/pokemongocr
Run orc on a screenshot of a pokémon to get its name, cp, hp, and stardust to next level.
https://github.com/bschlenk/pokemongocr
Last synced: 2 days ago
JSON representation
Run orc on a screenshot of a pokémon to get its name, cp, hp, and stardust to next level.
- Host: GitHub
- URL: https://github.com/bschlenk/pokemongocr
- Owner: bschlenk
- License: mit
- Created: 2016-08-10T08:39:34.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-28T20:28:35.000Z (almost 8 years ago)
- Last Synced: 2024-04-14T23:12:05.697Z (7 months ago)
- Language: Python
- Size: 1.67 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pokemongocr
Run orc on a screenshot of a pokémon to get its name, cp, hp, and stardust to next level.## Dependencies
Make sure tesseract is installed somewhere and you can access it from the comand line simply by typing `tesseract`.
On OSX you can install it through brew:
```brew install tesseract```## Usage
Invoke the script with the path to a screenshot as the first argument.
```
>>> ./main.py screenshots/bulbasaur.png
{'stardust': 2500, 'name': 'Bulbasaur', 'cp': 600, 'hp': 62}
```