|
1 | 1 | # TicTacToe-Game
|
2 | 2 | TicTacToe Game based on Minimax Algorithm using OpenCV/Python
|
| 3 | +TicTacToe Game (3x3) (9 Blocks) |
| 4 | + |
| 5 | + System Requirement : Ubuntu OS (main Requirement OpenCV and Python on any OS) |
| 6 | + Software Requirement : Python |
| 7 | + |
| 8 | +The Game is built by using |
| 9 | + |
| 10 | + Numpy (Numerical and Scientific Computing Library in Python) |
| 11 | + |
| 12 | + $sudo apt-get install python-numpy |
| 13 | + $sudo apt-get install python3-numpy |
| 14 | + |
| 15 | + OpenCV (Computer Vision) |
| 16 | + |
| 17 | + $sudo apt-get install libopencv-dev |
| 18 | + $sudo apt-get install libopencv-core-dev |
| 19 | + $sudo apt-get install opencv-data |
| 20 | + $sudo apt-get install python-opencv |
| 21 | + $sudo apt-get install python3-opencv |
| 22 | + |
| 23 | + Python2.7 or Higher |
| 24 | +Run the Game |
| 25 | + |
| 26 | + $python3 Game.py |
| 27 | + |
| 28 | +Future version : |
| 29 | + Upgrade the same TicTacToe on 4x4 (16) or (NxN) (Square), where N is a +ve integer(>=3) and Square = N x N |
0 commit comments