Skip to main content

Wrapper package for OpenCV python bindings.

Reason this release was yanked:

Release deprecated

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 and MacOS wheels ship with Qt 4.8.7 licensed under the LGPLv2.1.

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 2.7 is the only supported version in 2.x series. Python 2.7 support will be dropped in the end of 2019.

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

Currently, builds for following Python versions are provided:

  • 2.7
  • 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-3.4.9.31-cp38-cp38-win_amd64.whl (36.9 MB view details)

Uploaded CPython 3.8Windows x86-64

opencv_contrib_python-3.4.9.31-cp38-cp38-win32.whl (27.3 MB view details)

Uploaded CPython 3.8Windows x86

opencv_contrib_python-3.4.9.31-cp38-cp38-macosx_10_9_x86_64.whl (58.4 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

opencv_contrib_python-3.4.9.31-cp37-cp37m-win_amd64.whl (36.9 MB view details)

Uploaded CPython 3.7mWindows x86-64

opencv_contrib_python-3.4.9.31-cp37-cp37m-win32.whl (27.3 MB view details)

Uploaded CPython 3.7mWindows x86

opencv_contrib_python-3.4.9.31-cp37-cp37m-macosx_10_9_x86_64.whl (58.4 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

opencv_contrib_python-3.4.9.31-cp36-cp36m-win_amd64.whl (36.9 MB view details)

Uploaded CPython 3.6mWindows x86-64

opencv_contrib_python-3.4.9.31-cp36-cp36m-win32.whl (27.3 MB view details)

Uploaded CPython 3.6mWindows x86

opencv_contrib_python-3.4.9.31-cp36-cp36m-macosx_10_9_x86_64.whl (58.4 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

opencv_contrib_python-3.4.9.31-cp35-cp35m-win_amd64.whl (36.9 MB view details)

Uploaded CPython 3.5mWindows x86-64

opencv_contrib_python-3.4.9.31-cp35-cp35m-win32.whl (27.3 MB view details)

Uploaded CPython 3.5mWindows x86

opencv_contrib_python-3.4.9.31-cp35-cp35m-macosx_10_9_x86_64.whl (58.4 MB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

opencv_contrib_python-3.4.9.31-cp27-cp27m-win_amd64.whl (36.9 MB view details)

Uploaded CPython 2.7mWindows x86-64

opencv_contrib_python-3.4.9.31-cp27-cp27m-win32.whl (27.3 MB view details)

Uploaded CPython 2.7mWindows x86

opencv_contrib_python-3.4.9.31-cp27-cp27m-macosx_10_9_x86_64.whl (58.4 MB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.9.31-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 36.9 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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.8.0

File hashes

Hashes for opencv_contrib_python-3.4.9.31-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7701f2cb1e70a40779eeabb36ede63d14d199902ac8f4d5f9c46b40473f34a37
MD5 a5b93041eccab000447a25172255f983
BLAKE2b-256 48791398bf14e51326fa6700cb13d4e031f111074afda0892d0bc85e6a17573a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.9.31-cp38-cp38-win32.whl
  • Upload date:
  • Size: 27.3 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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.8.0

File hashes

Hashes for opencv_contrib_python-3.4.9.31-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7b79d207eec4618266051ff5b3ad1ca9c90c9435b2238da5f5b9df765a98cd40
MD5 1e8049967f5a149a9a37b46be10f81e7
BLAKE2b-256 acefefcd95b00b1e0b3d4d283e113f5e1d3ac422feb9284a170e8c6d50b7e402

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.9.31-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0fe20ff6cfaea886c48bfa4f640b88342b32e5e4717ca770e7157373c3d993ed
MD5 db62583a0c569e36c680a17c9bdeff3e
BLAKE2b-256 9ec26efa75825c62c266a946dfa1308709d3f00afe76622a54c939725b7773dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.9.31-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a80c487e7c0f0a58f14884dfb4a14cf9d13666de5058a0cb963e189bb8bdd147
MD5 56c39ba5761fe6085556d061499a21e2
BLAKE2b-256 5ed33c0638a06e633a4b4a2c7e10724df7dd97ef028d18f8dcf448ea505587bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.9.31-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 58.4 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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.8.1

File hashes

Hashes for opencv_contrib_python-3.4.9.31-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4b8812616ace672b12df1ff4eb76dea86f4393509a4b1c59d02d4a7bb48e750a
MD5 c02274a5dd77d6f4b7340f31b8319345
BLAKE2b-256 c2bc290a24094ab1a2395fe1e8b4a563401934e81d8638d38debba68b4d9ed08

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.9.31-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 36.9 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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.5

File hashes

Hashes for opencv_contrib_python-3.4.9.31-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 470e5f71ab7a8ccc52e6c446bcc93f8d05a317756a61847f1dbe8eded121b5dd
MD5 3c9b044dab333ceccfafc8ee729e22b3
BLAKE2b-256 5c1e4a47d259a024725776c0a1424b4c781f4c791f8c96693cc3cd4b93b488d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.9.31-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 27.3 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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.5

File hashes

Hashes for opencv_contrib_python-3.4.9.31-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 bdff5d9942a4bd54c20f07e4ef0a1a58637f07253142e6c6305e609377a4a037
MD5 126e0342d9bb32afecef4e2c7ca4dbca
BLAKE2b-256 18b939aad3f8e1c91ec2580514f4523ae80ac25f9bfe73a47e56e079fecb87d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.9.31-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 552d91ba30f5bf506021b321699a6bfab5e21fb696dfa808886511de52220bc8
MD5 e162eda2598d51cc120f5d930dafe323
BLAKE2b-256 6fa2884ddbf269a6d8f134838efb220fea5eb2a16a39eb1d485a51a31b0eb3e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.9.31-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 da4020589998ea72c99ecd39994f3dd26ccb28bcbbf22bcc541fc79548fa5430
MD5 70cf45fc85f82cc41cb3a577bc3a488e
BLAKE2b-256 e45599d557c95a9b52fdb2f97bc2ba8df7e1dcf88c9f84107d53dfdbf4927858

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.9.31-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 58.4 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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.6

File hashes

Hashes for opencv_contrib_python-3.4.9.31-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 86cbe6925b3b685bf1327523136886ca899c7dbe717a94e4e976c1d96c28e863
MD5 99489f7fc10d341024cd726b6973ee4a
BLAKE2b-256 b1729b06b39e84217e9994706456b40915e2b288942ba16f3c28961c0c5b652a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.9.31-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 36.9 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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.6.8

File hashes

Hashes for opencv_contrib_python-3.4.9.31-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ff570807d75c7f26ebe1b633f5dff113b249870b3891944ad8f2df77899eee65
MD5 bae57859e4f62d56a3e529d551a3adea
BLAKE2b-256 9b67117b0735f6770427c3766c4858387216dd20e5eeee456787ad461c595a35

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.9.31-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 27.3 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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.6.8

File hashes

Hashes for opencv_contrib_python-3.4.9.31-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 777b68e2c39dc14be18b64cad70c08a3ea9d38ff56b709d148c841216c715b9b
MD5 de98a2d1f3ac49ac9c8f98b6dce784a7
BLAKE2b-256 c11c4573266a454d17bf251fa9e6fe60e85ac5cb87256eff976c2661a08da0b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.9.31-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 54d347939cd01fedc61e328b70b5790b159060447ccb7d4d34bd3eb2a37d556d
MD5 393ff028354552febeb48251c49c38e9
BLAKE2b-256 bd21724d9bd32c8a44d70ce90c86352ba18d33867343e32bb2c8b4b16bce5f17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.9.31-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 616fc569097a33e6e33263467f2ad460dd6e322db7c4b74dfcd02ffabaafd197
MD5 a8d08ced1cfaa5c8f433c1ff9c31117b
BLAKE2b-256 e063671502b05d2b6f3bfaa3ed05487f57b98f8cb31831aaa3c4cfa0cb604053

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.9.31-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 58.4 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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.6.8

File hashes

Hashes for opencv_contrib_python-3.4.9.31-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8f288afbd37ac5fa69c5a830b0b940061950ad7381615ed10b5b0106c8bf9ee7
MD5 c7da18539e794daa28ee2d6f3342b21d
BLAKE2b-256 0a82d2e3f62e5838d08ccfe2d64765bc59d680fa484ce9ed136856a1fde6dd62

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.9.31-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 36.9 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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.5.4

File hashes

Hashes for opencv_contrib_python-3.4.9.31-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 43727df765040e7c14dc42362c155dc7cc950f5ef93fa4b9b7fb65a0409876fa
MD5 fe829677c01d6e9e0533e62c62e5a36c
BLAKE2b-256 d69bcc9418d7afedcf3a6a2e91db34528152cc008b9787bb8391e87eb2b173e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.9.31-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 27.3 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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.5.4

File hashes

Hashes for opencv_contrib_python-3.4.9.31-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 83ae707ce08c4970de9210056b9d5643865c1656735e4441bd74200e1dc0d882
MD5 96f39336a05f68068288bf351b90672b
BLAKE2b-256 11965cb0c57f66abbf280a0f2ada7770f7dd97a1779fdaca9a5b0c5543372102

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.9.31-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4c2aef309bfd07daa70237cb5ed330d62e197dfd3c251cb0436110e23077125a
MD5 36a5d3c6936ca39ceb164197f0c3ac8a
BLAKE2b-256 670d842a14803e63810fe29a3f975a536b2b7ef2718c8badad93203ce807e3e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.9.31-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 113dd152cbda00e689297b2718a576f029467efde75cc95687b4736096948105
MD5 366af7f6ef5822701c3dc46c2c8180fd
BLAKE2b-256 b510b665468424bf9d135e9b5445f2d0ee2da2a9d25b6ac4ddca447fbf349088

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.9.31-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 58.4 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.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.5.4

File hashes

Hashes for opencv_contrib_python-3.4.9.31-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 22eff8e2af935cd4f07ddac1d2580c46b7eb0d189a994ee91d9a0f66e68c5b6d
MD5 d0dabafd0a76fb5a3845ebbc21d4600c
BLAKE2b-256 4762a7d285e5ef4a4b985adf8192e16999cd487d7c50070f6a93db1f1a41d5d0

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.9.31-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.9.31-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c8096323a4f4f957be10d759f9396475bebee14faa3ba7dd2f30125293c5e4e9
MD5 c4002d856522df82d36bbcec015799b4
BLAKE2b-256 62e6bed982df7058bc8a594f390404d4ab09d247caa5570e8db2bb9e1b066826

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.9.31-cp27-cp27mu-manylinux1_i686.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.9.31-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 df612e7bb7bd532f8281a2bc9742b595d648d78b6502b6e2e95edd02fb8b7b80
MD5 6c2159d709cc61661b46ac3fe3493caf
BLAKE2b-256 c14cd4f4f4770e19e084321f6275d0eda2023b7821b9ec5b47ef605ff9cbf736

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.9.31-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: opencv_contrib_python-3.4.9.31-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 36.9 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/2.7.17

File hashes

Hashes for opencv_contrib_python-3.4.9.31-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 031ff6d7f37ee18c82246e052a634f08cbdbc811382f51229a58741c15092a2a
MD5 2808c4e262b35ca64b1c63dc3b117bf6
BLAKE2b-256 94b826aa598a81c0594cbcd4cfc99bfea047e86e551b51188035e5cd4d053fb3

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.9.31-cp27-cp27m-win32.whl.

File metadata

  • Download URL: opencv_contrib_python-3.4.9.31-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 27.3 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/2.7.17

File hashes

Hashes for opencv_contrib_python-3.4.9.31-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 2521a8c0a637f169a7d60956c2c5c55c4530812964d116ce84b47be04e974e5e
MD5 89e64254e9ca0f070f6794e512cdcb01
BLAKE2b-256 4e095e357a937269fe8e3ddc9bf3aea68d4a4de43b95c043d3de166a8c2cc0f6

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.9.31-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.9.31-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bcb5efb1b8230c60e0ffad7265c03d91b5d49427b76bbf522f36d94095b0cece
MD5 8564ca39bc2dfea8c8d4e30ce3cc4649
BLAKE2b-256 0a329ffda239d0634829aeeb1b8bcf75665afdc931f27c698f129ee29205d45f

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.9.31-cp27-cp27m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.9.31-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5dc0a28327f6a9ebb86b0c6df46fd9dccdeab36f3164dd460e3aa9d6a1e1de88
MD5 0d9ad775ffc8141bdd438555fb531ddd
BLAKE2b-256 2ab80b8c35787f20e7f1abbd65b2927b93319d9ca40624759b32cca6564f4316

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.9.31-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: opencv_contrib_python-3.4.9.31-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 58.4 MB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/2.7.17

File hashes

Hashes for opencv_contrib_python-3.4.9.31-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8718b01d4ef46ae405de8aea97704af2e06f2e11d854aad3ce23f99089d2b190
MD5 11eed974391f7e4621c2cf0fa6d8a08f
BLAKE2b-256 51373b3ab41a354a24047aad01a88561da389a35cbefe79e239431be63d22e34

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