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 SIFT and SURF are not included in these packages because they are patented and therefore cannot be distributed as built binaries. 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 OS X)

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

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. Install Python dependencies

    • setup.py installs the dependencies itself, so you need to run it in an environment where you have the rights to install modules with Pip for the running Python
  5. 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)
  6. Rearrange OpenCV's build result, add our custom files and generate wheel

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

  8. Install the generated wheel

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

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

Steps 1--5 are handled by setup.py bdist_wheel.

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

  • ENABLE_CONTRIB and ENABLE_HEADLESS. Set to 1 to build the contrib and/or headless version
  • CMAKE_ARGS. Additional arguments for OpenCV's CMake invocation. You can use this to make a custom build.

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.

Linux wheels ship with Qt 4.8.7 licensed under the LGPLv2.1.

MacOS wheels ship with Qt 5 licensed under the LGPLv3.

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.

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
  • 3.6
  • 3.7
  • 3.8

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-4.2.0.34-cp38-cp38-win_amd64.whl (39.5 MB view details)

Uploaded CPython 3.8Windows x86-64

opencv_contrib_python-4.2.0.34-cp38-cp38-win32.whl (29.5 MB view details)

Uploaded CPython 3.8Windows x86

opencv_contrib_python-4.2.0.34-cp38-cp38-macosx_10_9_x86_64.whl (60.3 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

opencv_contrib_python-4.2.0.34-cp37-cp37m-win_amd64.whl (39.5 MB view details)

Uploaded CPython 3.7mWindows x86-64

opencv_contrib_python-4.2.0.34-cp37-cp37m-win32.whl (29.5 MB view details)

Uploaded CPython 3.7mWindows x86

opencv_contrib_python-4.2.0.34-cp37-cp37m-macosx_10_9_x86_64.whl (60.3 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

opencv_contrib_python-4.2.0.34-cp36-cp36m-win_amd64.whl (39.5 MB view details)

Uploaded CPython 3.6mWindows x86-64

opencv_contrib_python-4.2.0.34-cp36-cp36m-win32.whl (29.5 MB view details)

Uploaded CPython 3.6mWindows x86

opencv_contrib_python-4.2.0.34-cp36-cp36m-macosx_10_9_x86_64.whl (60.3 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

opencv_contrib_python-4.2.0.34-cp35-cp35m-win_amd64.whl (39.5 MB view details)

Uploaded CPython 3.5mWindows x86-64

opencv_contrib_python-4.2.0.34-cp35-cp35m-win32.whl (29.5 MB view details)

Uploaded CPython 3.5mWindows x86

opencv_contrib_python-4.2.0.34-cp35-cp35m-macosx_10_9_x86_64.whl (60.3 MB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.2.0.34-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 39.5 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for opencv_contrib_python-4.2.0.34-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6d745e6806b5d6844faee610c6ea37d34e600cdc33c68322697f90e9d5c1e379
MD5 6202b168dd9f2deaba99f6218962176e
BLAKE2b-256 8f2aa835183c0e05af3f1d355869e852ba35356ca37a66a0186749cb912648eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.2.0.34-cp38-cp38-win32.whl
  • Upload date:
  • Size: 29.5 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.0

File hashes

Hashes for opencv_contrib_python-4.2.0.34-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 30b4ff5e2e3052860c9b7c825d54dbc170e7181d17600f17ac3b0674312a42d0
MD5 de907d3484e2743f50a2e54b8110a8fe
BLAKE2b-256 189fa18126a5299e1dcdf2f4d58ea3739061354633efd0d8dcb8a7671f97e635

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.2.0.34-cp38-cp38-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-4.2.0.34-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b08d709530d2136336861e64734a29a6dcfdd86dd098f2c1c4ff7f1edc86abb2
MD5 0410d0c4c2da6a78aacc5d53aa00ffc9
BLAKE2b-256 30eebf5a525040faba750ac3b1e9b418879a369b84031e56902477f3de1f5454

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.2.0.34-cp38-cp38-manylinux1_i686.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-4.2.0.34-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 254d0b5b02417ad0f12ca321ad3ed1b6982f2b0733a7c5c620434a49b37909fc
MD5 3a56b5e2dd2311ae73c25de5e4677113
BLAKE2b-256 1a86f94ad95b8e41f690e69a2124e215a3d88ed2b4e904498f716e94f1319bbc

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.2.0.34-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: opencv_contrib_python-4.2.0.34-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 60.3 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for opencv_contrib_python-4.2.0.34-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a1d052df7eb7f5d866c432811ddfe94bcafc0299360abae4243dcad7312294a4
MD5 79b4b0816586bf35fd3a38ec7f2f3574
BLAKE2b-256 d1290e9583011e535c23b92a0ec64ff449b9e05d86423a6e5a16385f569b04d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.2.0.34-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 39.5 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.5

File hashes

Hashes for opencv_contrib_python-4.2.0.34-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b30432bca00f258547390fd7c68cc9a8fee1e6a79b29245a6f5c611a943d3910
MD5 f22efa625a3502e653b46beeddf3c31b
BLAKE2b-256 c6a1d0fd1ea9d5417437e6271e7f88d3ed155f64a979d3ccd926a3b21d4404dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.2.0.34-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 29.5 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.5

File hashes

Hashes for opencv_contrib_python-4.2.0.34-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 0d3698df7120a85e5f94cb2cd309a40d4c516a13c10e47f8cd5d1117147059dd
MD5 d9f0d16474a87ea105c82dfd50afc57a
BLAKE2b-256 2cfe7f2e18fb8818f0ead4a44a9b9d964e1a1dcd9c2a35b53101011cc56284dd

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.2.0.34-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-4.2.0.34-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ed6071753afac22109597ba5698fd35fed542fd16c4e005892a13ddf6b99dfd1
MD5 4e08aea02ae445c0c1916ea53f5c60ee
BLAKE2b-256 489805bd8e00c71b66c4e7847cc051cac404191d904df58b51a7dcc3767ff747

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.2.0.34-cp37-cp37m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-4.2.0.34-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1f520803ebac7b3f4f8416a4af582bf6f1f9024cd738679508dc712e2df3699c
MD5 c8f1f81f515cc51be4fc8248075818f0
BLAKE2b-256 69f66dc3394dd7eac1cddf07beeafe999016da7254cd403caae915bf6b39f8d7

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.2.0.34-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: opencv_contrib_python-4.2.0.34-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 60.3 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for opencv_contrib_python-4.2.0.34-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2b7901ece00fe9e37d4ca126ec96ab638f6cef8fa0bfa38e7b9daeb5306f8067
MD5 5b220d4a62a86c09383fa7caded8ebb0
BLAKE2b-256 ee9ace4d349af0648bb4d98fbb24959b1bd91a2b79e6903d8f25f23ab33a3e2e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.2.0.34-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 39.5 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.8

File hashes

Hashes for opencv_contrib_python-4.2.0.34-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c32d626d8688fbe9896ebfb5956242e2c6edf57f8d40660e30667d56a5f0eb17
MD5 a1bb5892fc5f98103f19967df2015ce0
BLAKE2b-256 43242e6136f83d90423ab163dbd1489db6415e24f81c90f7b5ad188464580162

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.2.0.34-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 29.5 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.8

File hashes

Hashes for opencv_contrib_python-4.2.0.34-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 97075b8021ea0739de2370ca7d88b1ff50fb7d10dd4e33325e70e1b29f77e788
MD5 0bc86a55c7be7b737a901d363cb62dcd
BLAKE2b-256 9beb0a2d2bec335b70b646f1078a4cc1d66530e755418e021c0d2aa210f0000f

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.2.0.34-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-4.2.0.34-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f709131bfb9235e8fa2ded9c4729c2639c569438d905d2b9d096a4553963e083
MD5 d83680be71fe01c8412616f5e9356fc3
BLAKE2b-256 c6db790dbc6bcfea87fc6f790c6306509c2691ce31c96d82e5b826545d90ea52

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.2.0.34-cp36-cp36m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-4.2.0.34-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c637f3c58dfb3a835790203d06715058ca4851d7d0d0a83535f5df482f3024c0
MD5 ee4fcb0c023490a3d50b71d50b94cd84
BLAKE2b-256 a60aba2b305b6defa980b6850aee9b0d97dd1a183e8c1cf31c6d4ee21194af25

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.2.0.34-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: opencv_contrib_python-4.2.0.34-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 60.3 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.8

File hashes

Hashes for opencv_contrib_python-4.2.0.34-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e1f1446ad583ee7381308ef7c21712110a579d32184c871e772fe5dd1832a1c5
MD5 3a108d5b6bc98e03973dbbdef45c4b03
BLAKE2b-256 d2840d5128455b068656f0a1c3f4a9032edfca6c60a547b194d89f98ff3b9ae2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.2.0.34-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 39.5 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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.5.4

File hashes

Hashes for opencv_contrib_python-4.2.0.34-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 49e051f9101e67945b8417b5529e3a9bf624b042e4db9c5c5461c6726c6a6bf4
MD5 76a816a97a5e9022fc563c4c7107d1cb
BLAKE2b-256 1ff2ea3794d13b99cce8b08fa737c0d0988d554ea44679dec5f0e208f3ed6db3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.2.0.34-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 29.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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.5.4

File hashes

Hashes for opencv_contrib_python-4.2.0.34-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 67553ce62075ef5b3005bdf524d7ae8980d3006b5e7dec9037c6db4153db37c0
MD5 78504f50ac6d4cbda0c09b19251f6e17
BLAKE2b-256 5c5ba0d4acb26d9aeb7ebfb0f2d755f75f6313eccd4d7f517dfc91be7bb3e2db

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.2.0.34-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-4.2.0.34-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 aa64e1062ac78ff7c11dea06b00af138ca77620c09994c47c01a80f85bceed33
MD5 052e3955d4762598b538b8f000f02390
BLAKE2b-256 17e4aac4454c7df99b264fc53a12c25a40c76dc5b417f9866f6d6d1554aac80e

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.2.0.34-cp35-cp35m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-4.2.0.34-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f265398d3243e4dc0d1f436d2f0eb2ebd91d0a7adb7c22da485e48c8dbb10d35
MD5 8697883a8f4c4caaccc383cbc74e83f5
BLAKE2b-256 c7e71a97f6f0a8cad58afaea59f2b010cf298d38e407f2ed3a1fa9d1f23eeb1b

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.2.0.34-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: opencv_contrib_python-4.2.0.34-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 60.3 MB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.5.4

File hashes

Hashes for opencv_contrib_python-4.2.0.34-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ab5b9a36d90f8919d29b31c7f000fc79fd745fa41e71bab282996a4792ced1f4
MD5 9a9a1e6a411a571694e912ecd7e317d0
BLAKE2b-256 618bd7e01e15d420c1d19a2bde2f292923c69518d97d01b74131e4d8ec51e76b

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