├── README.md ├── collect └── PalmTracker.py ├── config.py ├── data ├── down │ ├── saved_0000.jpg │ └── saved_0001.jpg ├── left │ ├── saved_0000.jpg │ └── saved_0001.jpg ├── pause │ ├── saved_0000.jpg │ └── saved_0001.jpg ├── right │ ├── saved_0000.jpg │ └── saved_0001.jpg └── up │ ├── saved_0000.jpg │ └── saved_0001.jpg ├── demo.py ├── game.py ├── images ├── Blinky.png ├── Clyde.png ├── Inky.png ├── Pinky.png ├── Trollman.png └── pacman.jpg ├── pacman.py ├── src └── freesansbold.ttf ├── test.jpg ├── tools ├── test.py └── train.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/play-Pacman-with-gesture-recognition-by-resnet18/HEAD/README.md -------------------------------------------------------------------------------- /collect/PalmTracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/play-Pacman-with-gesture-recognition-by-resnet18/HEAD/collect/PalmTracker.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/play-Pacman-with-gesture-recognition-by-resnet18/HEAD/config.py -------------------------------------------------------------------------------- /data/down/saved_0000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/play-Pacman-with-gesture-recognition-by-resnet18/HEAD/data/down/saved_0000.jpg -------------------------------------------------------------------------------- /data/down/saved_0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/play-Pacman-with-gesture-recognition-by-resnet18/HEAD/data/down/saved_0001.jpg -------------------------------------------------------------------------------- /data/left/saved_0000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/play-Pacman-with-gesture-recognition-by-resnet18/HEAD/data/left/saved_0000.jpg -------------------------------------------------------------------------------- /data/left/saved_0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/play-Pacman-with-gesture-recognition-by-resnet18/HEAD/data/left/saved_0001.jpg -------------------------------------------------------------------------------- /data/pause/saved_0000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/play-Pacman-with-gesture-recognition-by-resnet18/HEAD/data/pause/saved_0000.jpg -------------------------------------------------------------------------------- /data/pause/saved_0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/play-Pacman-with-gesture-recognition-by-resnet18/HEAD/data/pause/saved_0001.jpg -------------------------------------------------------------------------------- /data/right/saved_0000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/play-Pacman-with-gesture-recognition-by-resnet18/HEAD/data/right/saved_0000.jpg -------------------------------------------------------------------------------- /data/right/saved_0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/play-Pacman-with-gesture-recognition-by-resnet18/HEAD/data/right/saved_0001.jpg -------------------------------------------------------------------------------- /data/up/saved_0000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/play-Pacman-with-gesture-recognition-by-resnet18/HEAD/data/up/saved_0000.jpg -------------------------------------------------------------------------------- /data/up/saved_0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/play-Pacman-with-gesture-recognition-by-resnet18/HEAD/data/up/saved_0001.jpg -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/play-Pacman-with-gesture-recognition-by-resnet18/HEAD/demo.py -------------------------------------------------------------------------------- /game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/play-Pacman-with-gesture-recognition-by-resnet18/HEAD/game.py -------------------------------------------------------------------------------- /images/Blinky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/play-Pacman-with-gesture-recognition-by-resnet18/HEAD/images/Blinky.png -------------------------------------------------------------------------------- /images/Clyde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/play-Pacman-with-gesture-recognition-by-resnet18/HEAD/images/Clyde.png -------------------------------------------------------------------------------- /images/Inky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/play-Pacman-with-gesture-recognition-by-resnet18/HEAD/images/Inky.png -------------------------------------------------------------------------------- /images/Pinky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/play-Pacman-with-gesture-recognition-by-resnet18/HEAD/images/Pinky.png -------------------------------------------------------------------------------- /images/Trollman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/play-Pacman-with-gesture-recognition-by-resnet18/HEAD/images/Trollman.png -------------------------------------------------------------------------------- /images/pacman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/play-Pacman-with-gesture-recognition-by-resnet18/HEAD/images/pacman.jpg -------------------------------------------------------------------------------- /pacman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/play-Pacman-with-gesture-recognition-by-resnet18/HEAD/pacman.py -------------------------------------------------------------------------------- /src/freesansbold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/play-Pacman-with-gesture-recognition-by-resnet18/HEAD/src/freesansbold.ttf -------------------------------------------------------------------------------- /test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/play-Pacman-with-gesture-recognition-by-resnet18/HEAD/test.jpg -------------------------------------------------------------------------------- /tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/play-Pacman-with-gesture-recognition-by-resnet18/HEAD/tools/test.py -------------------------------------------------------------------------------- /tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/play-Pacman-with-gesture-recognition-by-resnet18/HEAD/tools/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/play-Pacman-with-gesture-recognition-by-resnet18/HEAD/utils.py --------------------------------------------------------------------------------