An automatic gearscore calculator for the mobile game Epic Seven
The automatic gearscore calculator uses the open source tesseract OCR to read in gear information, such as the picture below, from the mobile game Epic Seven. Data is then parsed and gear score is then calculated based on its maximum potential and displayed.
- Grab a screenshot of the game window
- Checks if top left corner is either 'Enhance Equipment' or 'Substat Modification' using pytesseract, if true set state to true, otherwise state is false
- When state changes from false to true, trigger main logic
- Using cv2, crop and preprocess the screenshot to get relevant gear information and pass to pytesseract
- Parse output from pytesseract and pass to gear calculation
- Repeat from step 1