├── .gitignore ├── CREDITS ├── EXPERIMENTAL ├── README.md ├── config.m4 ├── config.w32 ├── examples ├── test_capture.php ├── test_convert.php ├── test_edge_detect.php ├── test_file_capture.php ├── test_haar.php ├── test_hist.php ├── test_smooth.php ├── test_split.php └── test_template.php ├── opencv.cpp ├── opencv.php ├── opencv_capture.cpp ├── opencv_error.cpp ├── opencv_histogram.cpp ├── opencv_image.cpp ├── opencv_mat.cpp ├── php_opencv.h └── tests └── 001.phpt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/OpenCV-for-PHP/HEAD/.gitignore -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- 1 | opencv -------------------------------------------------------------------------------- /EXPERIMENTAL: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/OpenCV-for-PHP/HEAD/README.md -------------------------------------------------------------------------------- /config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/OpenCV-for-PHP/HEAD/config.m4 -------------------------------------------------------------------------------- /config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/OpenCV-for-PHP/HEAD/config.w32 -------------------------------------------------------------------------------- /examples/test_capture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/OpenCV-for-PHP/HEAD/examples/test_capture.php -------------------------------------------------------------------------------- /examples/test_convert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/OpenCV-for-PHP/HEAD/examples/test_convert.php -------------------------------------------------------------------------------- /examples/test_edge_detect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/OpenCV-for-PHP/HEAD/examples/test_edge_detect.php -------------------------------------------------------------------------------- /examples/test_file_capture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/OpenCV-for-PHP/HEAD/examples/test_file_capture.php -------------------------------------------------------------------------------- /examples/test_haar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/OpenCV-for-PHP/HEAD/examples/test_haar.php -------------------------------------------------------------------------------- /examples/test_hist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/OpenCV-for-PHP/HEAD/examples/test_hist.php -------------------------------------------------------------------------------- /examples/test_smooth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/OpenCV-for-PHP/HEAD/examples/test_smooth.php -------------------------------------------------------------------------------- /examples/test_split.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/OpenCV-for-PHP/HEAD/examples/test_split.php -------------------------------------------------------------------------------- /examples/test_template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/OpenCV-for-PHP/HEAD/examples/test_template.php -------------------------------------------------------------------------------- /opencv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/OpenCV-for-PHP/HEAD/opencv.cpp -------------------------------------------------------------------------------- /opencv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/OpenCV-for-PHP/HEAD/opencv.php -------------------------------------------------------------------------------- /opencv_capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/OpenCV-for-PHP/HEAD/opencv_capture.cpp -------------------------------------------------------------------------------- /opencv_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/OpenCV-for-PHP/HEAD/opencv_error.cpp -------------------------------------------------------------------------------- /opencv_histogram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/OpenCV-for-PHP/HEAD/opencv_histogram.cpp -------------------------------------------------------------------------------- /opencv_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/OpenCV-for-PHP/HEAD/opencv_image.cpp -------------------------------------------------------------------------------- /opencv_mat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/OpenCV-for-PHP/HEAD/opencv_mat.cpp -------------------------------------------------------------------------------- /php_opencv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/OpenCV-for-PHP/HEAD/php_opencv.h -------------------------------------------------------------------------------- /tests/001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/OpenCV-for-PHP/HEAD/tests/001.phpt --------------------------------------------------------------------------------