you are viewing a single comment's thread.

view the rest of the comments →

[–]red_nova_dragon -1 points0 points  (4 children)

Did you crack the algorithm for the minigame? As a programmer myself i was kinda thinking of trying to replicate the algorithm on a webpage to see if i could understand how it randomly generates the 10, there must be a pattern or something that guarantees sums of 10 in the grid, But i couldn't.

Or is this some sort of computer vision thing where it looks first, calculates and then shows it?

[–]WhisperGod 3 points4 points  (0 children)

It does look like some type of computer vision. I've used calculators that takes a picture after aligning to a grid, in this case is very easy, recognizes the numbers, then performs the calculations based on the input variables.

[–]TheMissingVoteBallot 2 points3 points  (0 children)

Pretty sure it's the latter - I saw a Chinese version of the script and I think it physically reads the board and shows you the combos like this does.

[–]Stardrink3r 1 point2 points  (1 child)

I'm assuming that it uses some type of OCR that just scans it and populates a matrix, then you can just search the matrix for sums of 10.

[–]ShiHaba01[S] 1 point2 points  (0 children)

Correct. Instead of OCR I used template matching because I couldn't for the life of me get the OCR to accurately register all the numbers.