├── .gitignore ├── LICENSE ├── README.md ├── font └── MS Mincho.ttf ├── main.py ├── requirements.txt └── screenshot └── 1.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanislavPetrovV/Matrix-Vision/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanislavPetrovV/Matrix-Vision/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanislavPetrovV/Matrix-Vision/HEAD/README.md -------------------------------------------------------------------------------- /font/MS Mincho.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanislavPetrovV/Matrix-Vision/HEAD/font/MS Mincho.ttf -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanislavPetrovV/Matrix-Vision/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pygame 2 | numpy 3 | videocapture 4 | -------------------------------------------------------------------------------- /screenshot/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanislavPetrovV/Matrix-Vision/HEAD/screenshot/1.jpg --------------------------------------------------------------------------------