Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 928 Bytes

File metadata and controls

30 lines (22 loc) · 928 Bytes

OpenCV Tic Tac Toe Engine

Image from project, with video link

Authors:

How to use

  1. Check out repository
  2. Create virtual environment in project folder (python3.6 -m venv .)
  3. Install dependencies (pip install -r requirements.txt)
  4. Run tests (python testBoards.py). All tests should pass.
  5. Run game engine (python play.py).

Future work

  1. Improve detection
  2. Fully integrate with opencv and camera
  3. Test with Dobot robot
  4. Implement minimax AI algorithm Thanks to Vegard Tveit
  5. Dobot mode only supports the player being X at the moment. Increase support for O.
  6. Make Dobot return pieces afterwards.