Skip to main content

Wrapper package for OpenCV python bindings.

Project description

Downloads

OpenCV on Wheels

Unofficial pre-built OpenCV packages for Python.

Installation and Usage

  1. If you have previous/other manually installed (= not installed via pip) version of OpenCV installed (e.g. cv2 module in the root of Python's site-packages), remove it before installation to avoid conflicts.

  2. Select the correct package for your environment:

    There are four different packages and you should select only one of them. Do not install multiple different packages in the same environment. There is no plugin architecture: all the packages use the same namespace (cv2). If you installed multiple different packages in the same environment, uninstall them all with pip uninstall and reinstall only one package.

    a. Packages for standard desktop environments (Windows, macOS, almost any GNU/Linux distribution)

    • run pip install opencv-python if you need only main modules
    • run pip install opencv-contrib-python if you need both main and contrib modules (check extra modules listing from OpenCV documentation)

    b. Packages for server (headless) environments

    These packages do not contain any GUI functionality. They are smaller and suitable for more restricted environments.

    • run pip install opencv-python-headless if you need only main modules
    • run pip install opencv-contrib-python-headless if you need both main and contrib modules (check extra modules listing from OpenCV documentation)
  3. Import the package:

    import cv2

    All packages contain haarcascade files. cv2.data.haarcascades can be used as a shortcut to the data folder. For example:

    cv2.CascadeClassifier(cv2.data.haarcascades + "haarcascade_frontalface_default.xml")

  4. Read OpenCV documentation

  5. Before opening a new issue, read the FAQ below and have a look at the other issues which are already open.

Frequently Asked Questions

Q: Do I need to install also OpenCV separately?

A: No, the packages are special wheel binary packages and they already contain statically built OpenCV binaries.

Q: Pip fails with Could not find a version that satisfies the requirement ...?

A: Most likely the issue is related to too old pip and can be fixed by running pip install --upgrade pip. Note that the wheel (especially manylinux) format does not currently support properly ARM architecture so there are no packages for ARM based platforms in PyPI. However, opencv-python packages for Raspberry Pi can be found from https://www.piwheels.org/.

Q: Import fails on Windows: ImportError: DLL load failed: The specified module could not be found.?

A: If the import fails on Windows, make sure you have Visual C++ redistributable 2015 installed. If you are using older Windows version than Windows 10 and latest system updates are not installed, Universal C Runtime might be also required.

Windows N and KN editions do not include Media Feature Pack which is required by OpenCV. If you are using Windows N or KN edition, please install also Windows Media Feature Pack.

If you have Windows Server 2012+, media DLLs are probably missing too; please install the Feature called "Media Foundation" in the Server Manager. Beware, some posts advise to install "Windows Server Essentials Media Pack", but this one requires the "Windows Server Essentials Experience" role, and this role will deeply affect your Windows Server configuration (by enforcing active directory integration etc.); so just installing the "Media Foundation" should be a safer choice.

If the above does not help, check if you are using Anaconda. Old Anaconda versions have a bug which causes the error, see this issue for a manual fix.

If you still encounter the error after you have checked all the previous solutions, download Dependencies and open the cv2.pyd (located usually at C:\Users\username\AppData\Local\Programs\Python\PythonXX\Lib\site-packages\cv2) file with it to debug missing DLL issues.

Q: I have some other import errors?

A: Make sure you have removed old manual installations of OpenCV Python bindings (cv2.so or cv2.pyd in site-packages).

Q: Why the packages do not include non-free algorithms?

A: Non-free algorithms such as SURF are not included in these packages because they are patented / non-free and therefore cannot be distributed as built binaries. Note that SIFT is included in the builds due to patent expiration since OpenCV versions 4.3.0 and 3.4.10. See this issue for more info: https://github.com/skvark/opencv-python/issues/126

Q: Why the package and import are different (opencv-python vs. cv2)?

A: It's easier for users to understand opencv-python than cv2 and it makes it easier to find the package with search engines. cv2 (old interface in old OpenCV versions was named as cv) is the name that OpenCV developers chose when they created the binding generators. This is kept as the import name to be consistent with different kind of tutorials around the internet. Changing the import name or behaviour would be also confusing to experienced users who are accustomed to the import cv2.

Documentation for opencv-python

AppVeyor CI test status (Windows) Travis CI test status (Linux and macOS)

The aim of this repository is to provide means to package each new OpenCV release for the most used Python versions and platforms.

CI build process

The project is structured like a normal Python package with a standard setup.py file. The build process for a single entry in the build matrices is as follows (see for example appveyor.yml file):

  1. In Linux and MacOS build: get OpenCV's optional C dependencies that we compile against

  2. Checkout repository and submodules

    • OpenCV is included as submodule and the version is updated manually by maintainers when a new OpenCV release has been made
    • Contrib modules are also included as a submodule
  3. Find OpenCV version from the sources

  4. Build OpenCV

    • tests are disabled, otherwise build time increases too much
    • there are 4 build matrix entries for each build combination: with and without contrib modules, with and without GUI (headless)
    • Linux builds run in manylinux Docker containers (CentOS 5)
    • source distributions are separate entries in the build matrix
  5. Rearrange OpenCV's build result, add our custom files and generate wheel

  6. Linux and macOS wheels are transformed with auditwheel and delocate, correspondingly

  7. Install the generated wheel

  8. Test that Python can import the library and run some sanity checks

  9. Use twine to upload the generated wheel to PyPI (only in release builds)

Steps 1--4 are handled by pip wheel.

The build can be customized with environment variables. In addition to any variables that OpenCV's build accepts, we recognize:

  • CI_BUILD. Set to 1 to emulate the CI environment build behaviour. Used only in CI builds to force certain build flags on in setup.py. Do not use this unless you know what you are doing.
  • ENABLE_CONTRIB and ENABLE_HEADLESS. Set to 1 to build the contrib and/or headless version
  • ENABLE_JAVA, Set to 1 to enable the Java client build. This is disabled by default.
  • CMAKE_ARGS. Additional arguments for OpenCV's CMake invocation. You can use this to make a custom build.

See the next section for more info about manual builds outside the CI environment.

Manual builds

If some dependency is not enabled in the pre-built wheels, you can also run the build locally to create a custom wheel.

  1. Clone this repository: git clone --recursive https://github.com/skvark/opencv-python.git
  2. cd opencv-python
  3. Add custom Cmake flags if needed, for example: export CMAKE_ARGS="-DSOME_FLAG=ON -DSOME_OTHER_FLAG=OFF" (in Windows you need to set environment variables differently depending on Command Line or PowerShell)
  4. Select the version which you wish to build with ENABLE_CONTRIB and ENABLE_HEADLESS: i.e. export ENABLE_CONTRIB=1 if you wish to build opencv-contrib-python
  5. Run pip wheel . --verbose. NOTE: make sure you have the latest pip, the pip wheel command replaces the old python setup.py bdist_wheel command which does not support pyproject.toml.
    • Optional: on Linux use the manylinux images as a build hosts if maximum portability is needed and run auditwheel for the wheel after build
    • Optional: on macOS use delocate (same as auditwheel but for macOS)
  6. You'll have the wheel file in the dist folder and you can do with that whatever you wish

Source distributions

Since OpenCV version 4.3.0, also source distributions are provided in PyPI. This means that if your system is not compatible with any of the wheels in PyPI, pip will attempt to build OpenCV from sources.

You can also force pip to build the wheels from the source distribution. Some examples:

  • pip install --no-binary opencv-python opencv-python
  • pip install --no-binary :all: opencv-python

If you need contrib modules or headless version, just change the package name (step 4 in the previous section is not needed). However, any additional CMake flags can be provided via environment variables as described in step 3 of the manual build section. If none are provided, OpenCV's CMake scripts will attempt to find and enable any suitable dependencies. Headless distributions have hard coded CMake flags which disable all possible GUI dependencies.

Please note that build tools and numpy are required for the build to succeed. On slow systems such as Raspberry Pi the full build may take several hours. On a 8-core Ryzen 7 3700X the build takes about 6 minutes.

Licensing

Opencv-python package (scripts in this repository) is available under MIT license.

OpenCV itself is available under 3-clause BSD License.

Third party package licenses are at LICENSE-3RD-PARTY.txt.

All wheels ship with FFmpeg licensed under the LGPLv2.1.

Non-headless Linux and MacOS wheels ship with Qt 5 licensed under the LGPLv3.

The packages include also other binaries. Full list of licenses can be found from LICENSE-3RD-PARTY.txt.

Versioning

find_version.py script searches for the version information from OpenCV sources and appends also a revision number specific to this repository to the version string. It saves the version information to version.py file under cv2 in addition to some other flags.

Releases

A release is made and uploaded to PyPI when a new tag is pushed to master branch. These tags differentiate packages (this repo might have modifications but OpenCV version stays same) and should be incremented sequentially. In practice, release version numbers look like this:

cv_major.cv_minor.cv_revision.package_revision e.g. 3.1.0.0

The master branch follows OpenCV master branch releases. 3.4 branch follows OpenCV 3.4 bugfix releases.

Development builds

Every commit to the master branch of this repo will be built. Possible build artifacts use local version identifiers:

cv_major.cv_minor.cv_revision+git_hash_of_this_repo e.g. 3.1.0+14a8d39

These artifacts can't be and will not be uploaded to PyPI.

Manylinux wheels

Linux wheels are built using manylinux. These wheels should work out of the box for most of the distros (which use GNU C standard library) out there since they are built against an old version of glibc.

The default manylinux images have been extended with some OpenCV dependencies. See Docker folder for more info.

Supported Python versions

Python 3.x releases are provided for officially supported versions (not in EOL).

Currently, builds for following Python versions are provided:

  • 3.5 (EOL in 2020-09-13, builds for 3.5 will not be provided after this)
  • 3.6
  • 3.7
  • 3.8

Backward compatibility

Starting from 4.2.0 and 3.4.9 builds the macOS Travis build environment was updated to XCode 9.4. The change effectively dropped support for older than 10.13 macOS versions.

Starting from 4.3.0 and 3.4.10 builds the Linux build environment was updated from manylinux1 to manylinux2014. This dropped support for old Linux distributions.

Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

opencv_contrib_python-3.4.10.37-cp38-cp38-win_amd64.whl (37.3 MB view details)

Uploaded CPython 3.8Windows x86-64

opencv_contrib_python-3.4.10.37-cp38-cp38-win32.whl (27.5 MB view details)

Uploaded CPython 3.8Windows x86

opencv_contrib_python-3.4.10.37-cp38-cp38-macosx_10_13_x86_64.whl (60.7 MB view details)

Uploaded CPython 3.8macOS 10.13+ x86-64

opencv_contrib_python-3.4.10.37-cp37-cp37m-win_amd64.whl (37.3 MB view details)

Uploaded CPython 3.7mWindows x86-64

opencv_contrib_python-3.4.10.37-cp37-cp37m-win32.whl (27.5 MB view details)

Uploaded CPython 3.7mWindows x86

opencv_contrib_python-3.4.10.37-cp37-cp37m-macosx_10_13_x86_64.whl (60.6 MB view details)

Uploaded CPython 3.7mmacOS 10.13+ x86-64

opencv_contrib_python-3.4.10.37-cp36-cp36m-win_amd64.whl (37.3 MB view details)

Uploaded CPython 3.6mWindows x86-64

opencv_contrib_python-3.4.10.37-cp36-cp36m-win32.whl (27.5 MB view details)

Uploaded CPython 3.6mWindows x86

opencv_contrib_python-3.4.10.37-cp36-cp36m-macosx_10_13_x86_64.whl (60.6 MB view details)

Uploaded CPython 3.6mmacOS 10.13+ x86-64

opencv_contrib_python-3.4.10.37-cp35-cp35m-win_amd64.whl (37.3 MB view details)

Uploaded CPython 3.5mWindows x86-64

opencv_contrib_python-3.4.10.37-cp35-cp35m-win32.whl (27.5 MB view details)

Uploaded CPython 3.5mWindows x86

opencv_contrib_python-3.4.10.37-cp35-cp35m-macosx_10_13_x86_64.whl (60.6 MB view details)

Uploaded CPython 3.5mmacOS 10.13+ x86-64

File details

Details for the file opencv_contrib_python-3.4.10.37-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: opencv_contrib_python-3.4.10.37-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 37.3 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for opencv_contrib_python-3.4.10.37-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5ed726d2f047e2966590425e63e7b3cc764d4b213cb16321a60ebf50b4ff7d96
MD5 29e7e8c7b9c2124c6a3af944f75f5c4f
BLAKE2b-256 c5d0ea17b84fbb5eeb2bd108fc95a4ed30e6f8f202df70371f900416aa88e563

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.10.37-cp38-cp38-win32.whl.

File metadata

  • Download URL: opencv_contrib_python-3.4.10.37-cp38-cp38-win32.whl
  • Upload date:
  • Size: 27.5 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for opencv_contrib_python-3.4.10.37-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 22e4889b5376f9ad20be0831445252e81c554916fadd52366e4762c265f42ac1
MD5 33a1089f80d6fe57b6e33afcac644e5a
BLAKE2b-256 05a78b1f96c24943c02c1bb9612770d09e20bbbf7eb68ec7484445b4bfcf79be

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.10.37-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.10.37-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de42ad87d985e2a921f9313e24bb9dbd823adc143e79828ece52aa816c5d0473
MD5 579abb27f89b4e8823992bbafe740d5e
BLAKE2b-256 8d2cf0c5b14e268a98207f789e669dd57789a495b8d80f424b89da27f4823106

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.10.37-cp38-cp38-manylinux2014_i686.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.10.37-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 62cd41d63130efffc4dba3263646fff99c905200b412ae0b13e3ec038fa89f49
MD5 2dbb34816df056c4e2232f7f1c705f1c
BLAKE2b-256 8037a78e14c0c579160d71043578879aed5141c17f94b8adbeaa8c421592a8c4

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.10.37-cp38-cp38-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.10.37-cp38-cp38-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a8de4d30b908782ad0217bc42adc240a1073d74833fdd8fa35f9bccd35dc7aef
MD5 d48fe432079216ff0ac0104dbd219b79
BLAKE2b-256 fb7e3a14698f44d784e2f50b7218ddbe2145081863842895f5bd5e4ef92a9156

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.10.37-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: opencv_contrib_python-3.4.10.37-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 37.3 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.5

File hashes

Hashes for opencv_contrib_python-3.4.10.37-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3fe54047ae25513275cc6664ca4f7ef68582d776ee181666b3242289a26e4be6
MD5 0ef1a3b099898785416fead32e6b889f
BLAKE2b-256 518693c655f27fc729377d94b20067d69eeed67afb18fd4c319974e24291280e

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.10.37-cp37-cp37m-win32.whl.

File metadata

  • Download URL: opencv_contrib_python-3.4.10.37-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 27.5 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.5

File hashes

Hashes for opencv_contrib_python-3.4.10.37-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3fb9b44fef960d09a428358d6a2397543f1517b112e8e2b241146975168448f3
MD5 66b17f1459939a9fe90d37e131e26779
BLAKE2b-256 6953d29c5bc81dd163c6f44aeb8d7385ca0f367174fe2821f8b6d59119a6c109

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.10.37-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.10.37-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82540068e00d27a7d4a010f69d0d88e66f56464b7fc87ce612d03d2ba0083f38
MD5 f75b24ef3c8f4d89d29d7a0f3d444a36
BLAKE2b-256 ac373d216eb3ea4c89d6858a8f612b67e31cbd76b980ff3b92ba17ab7367fa49

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.10.37-cp37-cp37m-manylinux2014_i686.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.10.37-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 86cda1a2b21f6a849384684cf94d755b0e9e44a2375c3aa6d2c0f4deceb4cc82
MD5 fe1322c438c24f1b8270b07d48c2d124
BLAKE2b-256 d56b89117abcacfa35a952bcd5cddbf6c0370c90bab40ccdca1f4cddc12be574

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.10.37-cp37-cp37m-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.10.37-cp37-cp37m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cbfdf8c6048b2e71f62b1b4a0fdc41944689e0d530304f2ba60a5fcc1520b3d3
MD5 39c0a72c9e4d6c574265f6cae0a2f62a
BLAKE2b-256 e56b315848b308cf5d8d177148718371b523f18e55bcfcb6f4ae74c643ee9b76

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.10.37-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: opencv_contrib_python-3.4.10.37-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 37.3 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.8

File hashes

Hashes for opencv_contrib_python-3.4.10.37-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 26e2ffa9cff4c922a73fc18117004c37f1b6735b6fe58173609362100afc8d08
MD5 bc0b8415094743681890958edda16d57
BLAKE2b-256 15344669dc70547f5af0f97694eadb04df5c3af1efdf419b2797ac71e72fd6ad

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.10.37-cp36-cp36m-win32.whl.

File metadata

  • Download URL: opencv_contrib_python-3.4.10.37-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 27.5 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.8

File hashes

Hashes for opencv_contrib_python-3.4.10.37-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 c154452163b74b82282dc708e1954760efcbc9646c03b535fea98bb276633bc9
MD5 6c049e2ac8f17ecb21640af39ba95636
BLAKE2b-256 73a8bd2f1ec196fba8063facc04f59a16b2c331c74a45b31bc66b5182924770a

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.10.37-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.10.37-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45abfe9143c0dced9fe0efee9737f07b79f9a2289cd9c2312ff48e135c1c921f
MD5 dc3f56eb1d9cdee4816fd06a8492adf9
BLAKE2b-256 2a25b8dcead6c521eca28d1f263aec60dd37857954d471eb8972dabea45b68be

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.10.37-cp36-cp36m-manylinux2014_i686.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.10.37-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 904ec9d98e3c1bee550774d4029bcde501b16279c59ba28b93413601d7b344c3
MD5 aa93285beb7208e8cc9801ce73a9079d
BLAKE2b-256 070796d5267dd97a9dbfa2735a2d9bde7c85f0ecb644bb3b715a00f8dcf4bf75

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.10.37-cp36-cp36m-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.10.37-cp36-cp36m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9523fe7be22010a7b096383fcc7c6f4a9ea8ed632b9eb547f2cae3db6dc629a1
MD5 315958070f65f5feccedfd095a0b6ac6
BLAKE2b-256 343a823b3b4c785f332a75279a47f4b296e197b32351ba61b7ef4f1ed0b7e26b

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.10.37-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: opencv_contrib_python-3.4.10.37-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 37.3 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.4

File hashes

Hashes for opencv_contrib_python-3.4.10.37-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 25ac6bb74aae08b46bdae6e3a79302df0417a319e5d4df0a6244d394a3aab9c9
MD5 c614dcbe9d3d4570bf95e8434f46ec3b
BLAKE2b-256 31cfc81139a2d117101139c9648aa8176fded0b8c33a2580a3351ae7418683c7

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.10.37-cp35-cp35m-win32.whl.

File metadata

  • Download URL: opencv_contrib_python-3.4.10.37-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 27.5 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.4

File hashes

Hashes for opencv_contrib_python-3.4.10.37-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 e97fd5be582bb6a173702fb4f7e4e1e16083000abb01716067f5e7cdf93031ae
MD5 36725d079723c0e918d03974fdf06e17
BLAKE2b-256 62b0dd63ff39794a5418782ca63a2a300ea13b1d82e88994e54e406667256592

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.10.37-cp35-cp35m-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.10.37-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa4a24b5727efa821dcf80901e8135aebb4d9349d63e8fdffad1bf8b1d660372
MD5 c978fc6610e474a3b7859782f393f33d
BLAKE2b-256 514c480e864b879c908393a5775c96f82c83ace87947b76ae5c2030466182b7d

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.10.37-cp35-cp35m-manylinux2014_i686.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.10.37-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d14ec3a3b65d40823081a35bd539c57a8d115328c4082d9eca4a50d42832fa09
MD5 766ad9591490f436428c60d1c9fc0d71
BLAKE2b-256 510f2c1bb6b8ca849ceb9002ad534f4cffd73ea7339551d1c34ebe7a30dc64de

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.10.37-cp35-cp35m-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.10.37-cp35-cp35m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 dd729a4eceec2bc2289c8a53336cec0536c9a66a70ba144f7f60e682e685fb1e
MD5 4d7f739d6c60618eeb46bab743e63a93
BLAKE2b-256 3e792b8eded338ef62e7f35b3c785445d53835323282dba629b07115ea3dca5b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page