├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CMakeLists.txt ├── README.md ├── doc └── frame.png └── main.cpp /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiansiegel/video-qr-code-scanner/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiansiegel/video-qr-code-scanner/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiansiegel/video-qr-code-scanner/HEAD/README.md -------------------------------------------------------------------------------- /doc/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiansiegel/video-qr-code-scanner/HEAD/doc/frame.png -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiansiegel/video-qr-code-scanner/HEAD/main.cpp --------------------------------------------------------------------------------