What is a good video to look at regarding detection of objects?
I'd also like a good video for detecting the state of a board game. For example, if all the pieces on the board are in a particular state, what would be a favorable next move for the AI? Or at the very least, can we detect how well a certain players position is in the game?
I'd also like a good video for detecting the state of a board game. For example, if all the pieces on the board are in a particular state, what would be a favorable next move for the AI? Or at the very least, can we detect how well a certain players position is in the game?
I would choose YOLO (search the internet for YOLO and image detection) to find out positions of all pieces relative to the board. MPS supports YOLO, I believe, though I have not used it by myself.
Depending on the type of game you are targeting you may also set up a pattern recognition graph for all possible games states. But in this case the number of states should be limited.
Depending on the type of game you are targeting you may also set up a pattern recognition graph for all possible games states. But in this case the number of states should be limited.