Hi everyone i have a problem of being able to identify numbers in an image using netlogo programming, Please any ideas or techniques on how to be able to identify numbers in a cell? I am making a sudoku game using netlogo coding. First i need to import an image into the screen and be able to setup the image.
I need to be able to use the image(s) to generate random sudoku puzzles without any repetitions. But first to make the sudoku game i have to be able to use the numbers from the image.
I have got this code so far
to setup
clear-all
import-pcolors "s1.png"
reset-ticks
end
to go
ask patches with [pcolor != black]
[ set pcolor white ]
end
Please i need a simple algorithm for recognizing numbers in sudoku netlogo