├── .azure-pipelines ├── azure-pipelines-linux.yml ├── azure-pipelines-osx.yml └── azure-pipelines-win.yml ├── .ci_support ├── README ├── linux_64_python3.10.____cpythonqt_version6.yaml ├── linux_64_python3.10.____cpythonqt_versionnone.yaml ├── linux_64_python3.11.____cpythonqt_version6.yaml ├── linux_64_python3.11.____cpythonqt_versionnone.yaml ├── linux_64_python3.12.____cpythonqt_version6.yaml ├── linux_64_python3.12.____cpythonqt_versionnone.yaml ├── linux_64_python3.13.____cp313qt_version6.yaml ├── linux_64_python3.13.____cp313qt_versionnone.yaml ├── linux_aarch64_python3.10.____cpythonqt_version6.yaml ├── linux_aarch64_python3.10.____cpythonqt_versionnone.yaml ├── linux_aarch64_python3.11.____cpythonqt_version6.yaml ├── linux_aarch64_python3.11.____cpythonqt_versionnone.yaml ├── linux_aarch64_python3.12.____cpythonqt_version6.yaml ├── linux_aarch64_python3.12.____cpythonqt_versionnone.yaml ├── linux_aarch64_python3.13.____cp313qt_version6.yaml ├── linux_aarch64_python3.13.____cp313qt_versionnone.yaml ├── linux_ppc64le_python3.10.____cpython.yaml ├── linux_ppc64le_python3.11.____cpython.yaml ├── linux_ppc64le_python3.12.____cpython.yaml ├── linux_ppc64le_python3.13.____cp313.yaml ├── migrations │ ├── absl_grpc_proto.yaml │ ├── absl_grpc_proto_25Q2.yaml │ ├── ffmpeg8.yaml │ ├── hdf51146.yaml │ ├── imath322.yaml │ └── openexr34.yaml ├── osx_64_python3.10.____cpythonqt_version6.yaml ├── osx_64_python3.10.____cpythonqt_versionnone.yaml ├── osx_64_python3.11.____cpythonqt_version6.yaml ├── osx_64_python3.11.____cpythonqt_versionnone.yaml ├── osx_64_python3.12.____cpythonqt_version6.yaml ├── osx_64_python3.12.____cpythonqt_versionnone.yaml ├── osx_64_python3.13.____cp313qt_version6.yaml ├── osx_64_python3.13.____cp313qt_versionnone.yaml ├── osx_arm64_python3.10.____cpythonqt_version6.yaml ├── osx_arm64_python3.10.____cpythonqt_versionnone.yaml ├── osx_arm64_python3.11.____cpythonqt_version6.yaml ├── osx_arm64_python3.11.____cpythonqt_versionnone.yaml ├── osx_arm64_python3.12.____cpythonqt_version6.yaml ├── osx_arm64_python3.12.____cpythonqt_versionnone.yaml ├── osx_arm64_python3.13.____cp313qt_version6.yaml ├── osx_arm64_python3.13.____cp313qt_versionnone.yaml ├── win_64_python3.10.____cpythonqt_version6.yaml ├── win_64_python3.10.____cpythonqt_versionnone.yaml ├── win_64_python3.11.____cpythonqt_version6.yaml ├── win_64_python3.11.____cpythonqt_versionnone.yaml ├── win_64_python3.12.____cpythonqt_version6.yaml ├── win_64_python3.12.____cpythonqt_versionnone.yaml ├── win_64_python3.13.____cp313qt_version6.yaml └── win_64_python3.13.____cp313qt_versionnone.yaml ├── .circleci └── config.yml ├── .gitattributes ├── .github └── CODEOWNERS ├── .gitignore ├── .scripts ├── build_steps.sh ├── logging_utils.sh ├── run_docker_build.sh ├── run_osx_build.sh └── run_win_build.bat ├── LICENSE.txt ├── README.md ├── azure-pipelines.yml ├── conda-forge.yml └── recipe ├── CMakeLists.txt ├── bld.bat ├── build.sh ├── color_palette_alpha.png ├── conda_build_config.yaml ├── meta.yaml ├── patches_opencv ├── 0001-Add-installation-of-pip-metadata-from-cmake.patch ├── 0001-Also-install-metadata-for-opencv-python-headless.patch ├── 0002-delete-lines-that-download-opencv.patch ├── 0003-find-pkgconfig-on-windows.patch ├── 0004-fix-detection-for-protobuf-23.x.patch └── 27691-ffmpeg-8.0-support.patch ├── patches_opencv_contrib └── cmake_hdf5_xpile.patch ├── run_py_test.py ├── test.cpp └── test_1_c1.jpg /.azure-pipelines/azure-pipelines-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.azure-pipelines/azure-pipelines-linux.yml -------------------------------------------------------------------------------- /.azure-pipelines/azure-pipelines-osx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.azure-pipelines/azure-pipelines-osx.yml -------------------------------------------------------------------------------- /.azure-pipelines/azure-pipelines-win.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.azure-pipelines/azure-pipelines-win.yml -------------------------------------------------------------------------------- /.ci_support/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/README -------------------------------------------------------------------------------- /.ci_support/linux_64_python3.10.____cpythonqt_version6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/linux_64_python3.10.____cpythonqt_version6.yaml -------------------------------------------------------------------------------- /.ci_support/linux_64_python3.10.____cpythonqt_versionnone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/linux_64_python3.10.____cpythonqt_versionnone.yaml -------------------------------------------------------------------------------- /.ci_support/linux_64_python3.11.____cpythonqt_version6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/linux_64_python3.11.____cpythonqt_version6.yaml -------------------------------------------------------------------------------- /.ci_support/linux_64_python3.11.____cpythonqt_versionnone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/linux_64_python3.11.____cpythonqt_versionnone.yaml -------------------------------------------------------------------------------- /.ci_support/linux_64_python3.12.____cpythonqt_version6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/linux_64_python3.12.____cpythonqt_version6.yaml -------------------------------------------------------------------------------- /.ci_support/linux_64_python3.12.____cpythonqt_versionnone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/linux_64_python3.12.____cpythonqt_versionnone.yaml -------------------------------------------------------------------------------- /.ci_support/linux_64_python3.13.____cp313qt_version6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/linux_64_python3.13.____cp313qt_version6.yaml -------------------------------------------------------------------------------- /.ci_support/linux_64_python3.13.____cp313qt_versionnone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/linux_64_python3.13.____cp313qt_versionnone.yaml -------------------------------------------------------------------------------- /.ci_support/linux_aarch64_python3.10.____cpythonqt_version6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/linux_aarch64_python3.10.____cpythonqt_version6.yaml -------------------------------------------------------------------------------- /.ci_support/linux_aarch64_python3.10.____cpythonqt_versionnone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/linux_aarch64_python3.10.____cpythonqt_versionnone.yaml -------------------------------------------------------------------------------- /.ci_support/linux_aarch64_python3.11.____cpythonqt_version6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/linux_aarch64_python3.11.____cpythonqt_version6.yaml -------------------------------------------------------------------------------- /.ci_support/linux_aarch64_python3.11.____cpythonqt_versionnone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/linux_aarch64_python3.11.____cpythonqt_versionnone.yaml -------------------------------------------------------------------------------- /.ci_support/linux_aarch64_python3.12.____cpythonqt_version6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/linux_aarch64_python3.12.____cpythonqt_version6.yaml -------------------------------------------------------------------------------- /.ci_support/linux_aarch64_python3.12.____cpythonqt_versionnone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/linux_aarch64_python3.12.____cpythonqt_versionnone.yaml -------------------------------------------------------------------------------- /.ci_support/linux_aarch64_python3.13.____cp313qt_version6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/linux_aarch64_python3.13.____cp313qt_version6.yaml -------------------------------------------------------------------------------- /.ci_support/linux_aarch64_python3.13.____cp313qt_versionnone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/linux_aarch64_python3.13.____cp313qt_versionnone.yaml -------------------------------------------------------------------------------- /.ci_support/linux_ppc64le_python3.10.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/linux_ppc64le_python3.10.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/linux_ppc64le_python3.11.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/linux_ppc64le_python3.11.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/linux_ppc64le_python3.12.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/linux_ppc64le_python3.12.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/linux_ppc64le_python3.13.____cp313.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/linux_ppc64le_python3.13.____cp313.yaml -------------------------------------------------------------------------------- /.ci_support/migrations/absl_grpc_proto.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/migrations/absl_grpc_proto.yaml -------------------------------------------------------------------------------- /.ci_support/migrations/absl_grpc_proto_25Q2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/migrations/absl_grpc_proto_25Q2.yaml -------------------------------------------------------------------------------- /.ci_support/migrations/ffmpeg8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/migrations/ffmpeg8.yaml -------------------------------------------------------------------------------- /.ci_support/migrations/hdf51146.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/migrations/hdf51146.yaml -------------------------------------------------------------------------------- /.ci_support/migrations/imath322.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/migrations/imath322.yaml -------------------------------------------------------------------------------- /.ci_support/migrations/openexr34.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/migrations/openexr34.yaml -------------------------------------------------------------------------------- /.ci_support/osx_64_python3.10.____cpythonqt_version6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/osx_64_python3.10.____cpythonqt_version6.yaml -------------------------------------------------------------------------------- /.ci_support/osx_64_python3.10.____cpythonqt_versionnone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/osx_64_python3.10.____cpythonqt_versionnone.yaml -------------------------------------------------------------------------------- /.ci_support/osx_64_python3.11.____cpythonqt_version6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/osx_64_python3.11.____cpythonqt_version6.yaml -------------------------------------------------------------------------------- /.ci_support/osx_64_python3.11.____cpythonqt_versionnone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/osx_64_python3.11.____cpythonqt_versionnone.yaml -------------------------------------------------------------------------------- /.ci_support/osx_64_python3.12.____cpythonqt_version6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/osx_64_python3.12.____cpythonqt_version6.yaml -------------------------------------------------------------------------------- /.ci_support/osx_64_python3.12.____cpythonqt_versionnone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/osx_64_python3.12.____cpythonqt_versionnone.yaml -------------------------------------------------------------------------------- /.ci_support/osx_64_python3.13.____cp313qt_version6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/osx_64_python3.13.____cp313qt_version6.yaml -------------------------------------------------------------------------------- /.ci_support/osx_64_python3.13.____cp313qt_versionnone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/osx_64_python3.13.____cp313qt_versionnone.yaml -------------------------------------------------------------------------------- /.ci_support/osx_arm64_python3.10.____cpythonqt_version6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/osx_arm64_python3.10.____cpythonqt_version6.yaml -------------------------------------------------------------------------------- /.ci_support/osx_arm64_python3.10.____cpythonqt_versionnone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/osx_arm64_python3.10.____cpythonqt_versionnone.yaml -------------------------------------------------------------------------------- /.ci_support/osx_arm64_python3.11.____cpythonqt_version6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/osx_arm64_python3.11.____cpythonqt_version6.yaml -------------------------------------------------------------------------------- /.ci_support/osx_arm64_python3.11.____cpythonqt_versionnone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/osx_arm64_python3.11.____cpythonqt_versionnone.yaml -------------------------------------------------------------------------------- /.ci_support/osx_arm64_python3.12.____cpythonqt_version6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/osx_arm64_python3.12.____cpythonqt_version6.yaml -------------------------------------------------------------------------------- /.ci_support/osx_arm64_python3.12.____cpythonqt_versionnone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/osx_arm64_python3.12.____cpythonqt_versionnone.yaml -------------------------------------------------------------------------------- /.ci_support/osx_arm64_python3.13.____cp313qt_version6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/osx_arm64_python3.13.____cp313qt_version6.yaml -------------------------------------------------------------------------------- /.ci_support/osx_arm64_python3.13.____cp313qt_versionnone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/osx_arm64_python3.13.____cp313qt_versionnone.yaml -------------------------------------------------------------------------------- /.ci_support/win_64_python3.10.____cpythonqt_version6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/win_64_python3.10.____cpythonqt_version6.yaml -------------------------------------------------------------------------------- /.ci_support/win_64_python3.10.____cpythonqt_versionnone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/win_64_python3.10.____cpythonqt_versionnone.yaml -------------------------------------------------------------------------------- /.ci_support/win_64_python3.11.____cpythonqt_version6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/win_64_python3.11.____cpythonqt_version6.yaml -------------------------------------------------------------------------------- /.ci_support/win_64_python3.11.____cpythonqt_versionnone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/win_64_python3.11.____cpythonqt_versionnone.yaml -------------------------------------------------------------------------------- /.ci_support/win_64_python3.12.____cpythonqt_version6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/win_64_python3.12.____cpythonqt_version6.yaml -------------------------------------------------------------------------------- /.ci_support/win_64_python3.12.____cpythonqt_versionnone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/win_64_python3.12.____cpythonqt_versionnone.yaml -------------------------------------------------------------------------------- /.ci_support/win_64_python3.13.____cp313qt_version6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/win_64_python3.13.____cp313qt_version6.yaml -------------------------------------------------------------------------------- /.ci_support/win_64_python3.13.____cp313qt_versionnone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.ci_support/win_64_python3.13.____cp313qt_versionnone.yaml -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.gitignore -------------------------------------------------------------------------------- /.scripts/build_steps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.scripts/build_steps.sh -------------------------------------------------------------------------------- /.scripts/logging_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.scripts/logging_utils.sh -------------------------------------------------------------------------------- /.scripts/run_docker_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.scripts/run_docker_build.sh -------------------------------------------------------------------------------- /.scripts/run_osx_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.scripts/run_osx_build.sh -------------------------------------------------------------------------------- /.scripts/run_win_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/.scripts/run_win_build.bat -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /conda-forge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/conda-forge.yml -------------------------------------------------------------------------------- /recipe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/recipe/CMakeLists.txt -------------------------------------------------------------------------------- /recipe/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/recipe/bld.bat -------------------------------------------------------------------------------- /recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/recipe/build.sh -------------------------------------------------------------------------------- /recipe/color_palette_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/recipe/color_palette_alpha.png -------------------------------------------------------------------------------- /recipe/conda_build_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/recipe/conda_build_config.yaml -------------------------------------------------------------------------------- /recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/recipe/meta.yaml -------------------------------------------------------------------------------- /recipe/patches_opencv/0001-Add-installation-of-pip-metadata-from-cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/recipe/patches_opencv/0001-Add-installation-of-pip-metadata-from-cmake.patch -------------------------------------------------------------------------------- /recipe/patches_opencv/0001-Also-install-metadata-for-opencv-python-headless.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/recipe/patches_opencv/0001-Also-install-metadata-for-opencv-python-headless.patch -------------------------------------------------------------------------------- /recipe/patches_opencv/0002-delete-lines-that-download-opencv.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/recipe/patches_opencv/0002-delete-lines-that-download-opencv.patch -------------------------------------------------------------------------------- /recipe/patches_opencv/0003-find-pkgconfig-on-windows.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/recipe/patches_opencv/0003-find-pkgconfig-on-windows.patch -------------------------------------------------------------------------------- /recipe/patches_opencv/0004-fix-detection-for-protobuf-23.x.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/recipe/patches_opencv/0004-fix-detection-for-protobuf-23.x.patch -------------------------------------------------------------------------------- /recipe/patches_opencv/27691-ffmpeg-8.0-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/recipe/patches_opencv/27691-ffmpeg-8.0-support.patch -------------------------------------------------------------------------------- /recipe/patches_opencv_contrib/cmake_hdf5_xpile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/recipe/patches_opencv_contrib/cmake_hdf5_xpile.patch -------------------------------------------------------------------------------- /recipe/run_py_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/recipe/run_py_test.py -------------------------------------------------------------------------------- /recipe/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/recipe/test.cpp -------------------------------------------------------------------------------- /recipe/test_1_c1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/opencv-feedstock/HEAD/recipe/test_1_c1.jpg --------------------------------------------------------------------------------