├── .gitignore ├── LICENSE ├── README.md ├── debs ├── OpenCV-4.4.0-armv7l-dev.deb ├── OpenCV-4.4.0-armv7l-libs.deb ├── OpenCV-4.4.0-armv7l-licenses.deb ├── OpenCV-4.4.0-armv7l-main.deb ├── OpenCV-4.4.0-armv7l-python.deb └── OpenCV-4.4.0-armv7l-scripts.deb └── tests ├── cpp_opencv_test ├── CMakeLists.txt ├── main.cpp └── tetris_blocks.png └── python_opencv_test ├── test.py └── tetris_blocks.png /.gitignore: -------------------------------------------------------------------------------- 1 | CMakeLists.txt.user 2 | .clang-format 3 | build/ 4 | .idea/ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlime/Faster_OpenCV_4_Raspberry_Pi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlime/Faster_OpenCV_4_Raspberry_Pi/HEAD/README.md -------------------------------------------------------------------------------- /debs/OpenCV-4.4.0-armv7l-dev.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlime/Faster_OpenCV_4_Raspberry_Pi/HEAD/debs/OpenCV-4.4.0-armv7l-dev.deb -------------------------------------------------------------------------------- /debs/OpenCV-4.4.0-armv7l-libs.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlime/Faster_OpenCV_4_Raspberry_Pi/HEAD/debs/OpenCV-4.4.0-armv7l-libs.deb -------------------------------------------------------------------------------- /debs/OpenCV-4.4.0-armv7l-licenses.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlime/Faster_OpenCV_4_Raspberry_Pi/HEAD/debs/OpenCV-4.4.0-armv7l-licenses.deb -------------------------------------------------------------------------------- /debs/OpenCV-4.4.0-armv7l-main.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlime/Faster_OpenCV_4_Raspberry_Pi/HEAD/debs/OpenCV-4.4.0-armv7l-main.deb -------------------------------------------------------------------------------- /debs/OpenCV-4.4.0-armv7l-python.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlime/Faster_OpenCV_4_Raspberry_Pi/HEAD/debs/OpenCV-4.4.0-armv7l-python.deb -------------------------------------------------------------------------------- /debs/OpenCV-4.4.0-armv7l-scripts.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlime/Faster_OpenCV_4_Raspberry_Pi/HEAD/debs/OpenCV-4.4.0-armv7l-scripts.deb -------------------------------------------------------------------------------- /tests/cpp_opencv_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlime/Faster_OpenCV_4_Raspberry_Pi/HEAD/tests/cpp_opencv_test/CMakeLists.txt -------------------------------------------------------------------------------- /tests/cpp_opencv_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlime/Faster_OpenCV_4_Raspberry_Pi/HEAD/tests/cpp_opencv_test/main.cpp -------------------------------------------------------------------------------- /tests/cpp_opencv_test/tetris_blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlime/Faster_OpenCV_4_Raspberry_Pi/HEAD/tests/cpp_opencv_test/tetris_blocks.png -------------------------------------------------------------------------------- /tests/python_opencv_test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlime/Faster_OpenCV_4_Raspberry_Pi/HEAD/tests/python_opencv_test/test.py -------------------------------------------------------------------------------- /tests/python_opencv_test/tetris_blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlime/Faster_OpenCV_4_Raspberry_Pi/HEAD/tests/python_opencv_test/tetris_blocks.png --------------------------------------------------------------------------------