├── .gitignore ├── LICENSE ├── README.md ├── SnakeGame.py ├── game-control-using-object-tracking-multithreaded.py ├── game-control-using-object-tracking.py ├── images ├── Game-Play.png └── SnakeGameWelcomeScreen.png ├── object-detection.py ├── object-tracking-direction-detection.py ├── requirements.txt ├── settingsSnakeFun.py └── sounds ├── appleEatSound.wav └── bgmusic.mid /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msindev/Gesture-Controlled-Snake-Game/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msindev/Gesture-Controlled-Snake-Game/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msindev/Gesture-Controlled-Snake-Game/HEAD/README.md -------------------------------------------------------------------------------- /SnakeGame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msindev/Gesture-Controlled-Snake-Game/HEAD/SnakeGame.py -------------------------------------------------------------------------------- /game-control-using-object-tracking-multithreaded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msindev/Gesture-Controlled-Snake-Game/HEAD/game-control-using-object-tracking-multithreaded.py -------------------------------------------------------------------------------- /game-control-using-object-tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msindev/Gesture-Controlled-Snake-Game/HEAD/game-control-using-object-tracking.py -------------------------------------------------------------------------------- /images/Game-Play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msindev/Gesture-Controlled-Snake-Game/HEAD/images/Game-Play.png -------------------------------------------------------------------------------- /images/SnakeGameWelcomeScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msindev/Gesture-Controlled-Snake-Game/HEAD/images/SnakeGameWelcomeScreen.png -------------------------------------------------------------------------------- /object-detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msindev/Gesture-Controlled-Snake-Game/HEAD/object-detection.py -------------------------------------------------------------------------------- /object-tracking-direction-detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msindev/Gesture-Controlled-Snake-Game/HEAD/object-tracking-direction-detection.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msindev/Gesture-Controlled-Snake-Game/HEAD/requirements.txt -------------------------------------------------------------------------------- /settingsSnakeFun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msindev/Gesture-Controlled-Snake-Game/HEAD/settingsSnakeFun.py -------------------------------------------------------------------------------- /sounds/appleEatSound.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msindev/Gesture-Controlled-Snake-Game/HEAD/sounds/appleEatSound.wav -------------------------------------------------------------------------------- /sounds/bgmusic.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msindev/Gesture-Controlled-Snake-Game/HEAD/sounds/bgmusic.mid --------------------------------------------------------------------------------