Making a computer smarter than a chimpanzee (and also humans) by making it good at human benchmark challenges.
This test is a number memory test, where number tiles are shown on a grid and then hidden. The user must then click on the tiles in ascending order of the numbers on them.
Our approach to this involved taking a screenshot of the screen using pyautogui
and then using pytesseract
to extract the numbers from the image after segmenting it into individual tiles. We then sorted the numbers and clicked on the tiles in that order in an infinite loop.
This test is another memory test, where words are displayed on the screen and the user must decide if it has been shown before or not.
Our approach to this involved opening the web browser using selenium
and then extracting the proper components from the webpage. We added all seen words to a set and clicked the corresponding button based on whether the word was in the set or not.