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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

opencv_contrib_python-4.2.0.32-cp38-cp38-macosx_10_9_x86_64.whl (59.1 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

opencv_contrib_python-4.2.0.32-cp37-cp37m-macosx_10_9_x86_64.whl (59.1 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

opencv_contrib_python-4.2.0.32-cp36-cp36m-macosx_10_9_x86_64.whl (59.1 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

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

Uploaded CPython 3.5mWindows x86-64

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

Uploaded CPython 3.5mWindows x86

opencv_contrib_python-4.2.0.32-cp35-cp35m-macosx_10_9_x86_64.whl (59.1 MB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

opencv_contrib_python-4.2.0.32-cp27-cp27m-win_amd64.whl (39.5 MB view details)

Uploaded CPython 2.7mWindows x86-64

opencv_contrib_python-4.2.0.32-cp27-cp27m-win32.whl (29.5 MB view details)

Uploaded CPython 2.7mWindows x86

opencv_contrib_python-4.2.0.32-cp27-cp27m-macosx_10_9_x86_64.whl (59.1 MB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.2.0.32-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.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-4.2.0.32-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 bdfd6dbc14e1ca65aa87d9bdf63966c0880d2778f2d6ae92a7351d2a17ad510d
MD5 87cc6cbc6366d6ce23b7cedc1f662005
BLAKE2b-256 c8131b1b194e161500b9c55778865e70f7a2a937ee16665a9d496f1688b5f13c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.2.0.32-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.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-4.2.0.32-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3198fb276962c61eab1f105307a7e24da846dd99c1933f042cfcac710bc7cfb2
MD5 ae06771e218755f1507a2e92bef6c850
BLAKE2b-256 0625a0a66f8e2488c0618b224230e5cc414ee30cf3f11a2a34ad7bd4bb43b4ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-4.2.0.32-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 95659d03ff63d653b38ea60f5bd704c55ac99eb8ccb7109bda8d5e5c8c90e368
MD5 db33d3452a64f0dc4cb3cef1a9828cab
BLAKE2b-256 44879cf436251502334c39a17abc4f145e922a3e6c8e38122fa388752460db97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-4.2.0.32-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c502da0b2b033f7574888b95037bb4b4a534ab44e3eb7e7d0543053a69c2d9ce
MD5 67385653ce8ed7aa2a7666b926f65f13
BLAKE2b-256 a083758aa93640b3cc5920869034c9db90be78be15d73028c1f2d52d4297853b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.2.0.32-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 59.1 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-4.2.0.32-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 890686dcde29609023961243533c23b2e4d9d0d1cf9b4d26ccb5f6051219dc52
MD5 26ba435901a526b78411bfd5fbaf1113
BLAKE2b-256 fa9e820446da9b19d11fd1dc021357d3c22b1ef88697d59467a02b71822e7bd5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.2.0.32-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.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-4.2.0.32-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d603ceaccc32c62a07bc364416a09b786bb083c1c8aab72e03a335094aa21b20
MD5 0a7e871882da873cbaa85fd4cbd805b2
BLAKE2b-256 babf1e3a5efff5265d58873d72707487f7204cdab60e77b8deba1eea5f0aea86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.2.0.32-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.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-4.2.0.32-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 94f65972445ea02bc69632b0f6ab7ac27b6db5298d02d36ffa79fe9f9170cfe6
MD5 b2778d8b0ef49d56202503f81c4e154c
BLAKE2b-256 d23d14a958a9eaaa3cc1fce99edcaf669c6fa96881c732bd0886a2b5d00ec00e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-4.2.0.32-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0297312747faa98b2a0654cfc9a78392ba36c67c7b60ab2b152fcc5ac01f831b
MD5 01dd5b445a91c45b0c2446d9a5d0c75c
BLAKE2b-256 b1570b60941d55a3de6dd1b476568b858954169e54068064ead146f8f6ade1a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-4.2.0.32-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 45e309faf3a506d46a140b6f3ac3ccd39577ed88e761d9092c52222b764a50b7
MD5 7c7022e8422a0aa2d0c65562e90b4241
BLAKE2b-256 a172897c901ac0286b0ac0c4da44ae38503d82dc9888adc11d537799fa3962ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.2.0.32-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 59.1 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-4.2.0.32-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f24040c6e39052713c38b3d16c325254b3f31800050ba52227af1db601555353
MD5 9a72229e8a1450093233b2c6d6415d37
BLAKE2b-256 344a0cf958d32d4cf7ab7299861a0858880dd8d6ba856387b3887dbae4d4b244

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.2.0.32-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.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-4.2.0.32-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 91b29762634f20e3bafe7bc2c9361aeb48efb8bf8bf33f47d5985fea9fcad0cf
MD5 917f5187779b33bf048d9c5f55fb6947
BLAKE2b-256 e39f65d08eede8afa4abda2a45e849fc2dc2a86f3af52911829d5cc5b38e9af8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.2.0.32-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.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-4.2.0.32-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 abaf26a69a33460497f3091fc7dba4aa22ac9375ca3f14c4369249e060e6ba37
MD5 d28e35ad03fca30c9ed83ae56f5654f9
BLAKE2b-256 d41614e8277a2d525f61fd3a6822505fb8005d37375414bcde4d7fdc7f9acc44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-4.2.0.32-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 564eec2471439ef7e5835a5c7ec4e379575cd2f115a3f4c67d8ae8078a47a7fd
MD5 151c685085c82a26da70071b822dbffb
BLAKE2b-256 1832c302e32d1cf59fd4132c3d82e4182ddd61ac4f0e22cebec44eb36d2e0fd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-4.2.0.32-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 35e8d8105ffa547c826a23ca4508b5d3df970a88547c2249412022a82f70ff38
MD5 f22f795468f3639ffbff081747b6e533
BLAKE2b-256 04f156ebead1595d8a15219d8ba854051ab85b795f9efca26ca71f6be4961e5f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.2.0.32-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 59.1 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-4.2.0.32-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 59a80f0bbaee09dad0ff9800b22bcee9f9432a645e25be49922782ceb4500bfd
MD5 ae30fdfb63832082a6608526ade106dc
BLAKE2b-256 ec0c1281d56033ca5b8cc4f6550c433b5880c6e7b937daa25addccf5ecb2c445

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.2.0.32-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.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-4.2.0.32-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 3eefaea717887c1cb2479e4fdf7e311516547bd046ba4a38b9af88698a8bc2a6
MD5 c471c4b9fdc64eab437c2c60ec48bc04
BLAKE2b-256 fcc103a1c08c5ca3336b49aaf10b3046a41e7ca42c67834c9d04df07e200d13e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.2.0.32-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.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-4.2.0.32-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 6067597a8214eaa3d1197aac3eeee9bae506ab7dc0e8a32ee9bf89c9ace9baa0
MD5 dc0836908296b6d8b9b41b6011b622e6
BLAKE2b-256 cc08e639a63e04eaf5795955d4759690f45450b802ded1499321931a7aefaa90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-4.2.0.32-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 263a47619bff83661aad01eb84bcc534562815b8d67be12d09e9b336071b7dbf
MD5 466a3a82f4263947f84061cad8ad13d6
BLAKE2b-256 6d71e2d3a9f7183e8909a35b085a5b5236131920dd6cbdd3cecfde80f905f674

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-4.2.0.32-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 12f9240520b734c15623cd35c9efbde6cffa77188f4870e700a35a81f588af06
MD5 2647c96dec854b94d18640c82e46198b
BLAKE2b-256 b249e630476684236cfd8d6baef52c5091282743961ae43bf20b49c1b6411451

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.2.0.32-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 59.1 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-4.2.0.32-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fcf4e127329fc13e5f791f86d3ec425a3d2bf1133172d7fcb541d5029a467c90
MD5 ba3476e82f1c552937ce5cdeb97d285c
BLAKE2b-256 34fff7fcdd016e707302a76152add0a6ef98b234d61214ecc4ec298cd5c9a2c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-4.2.0.32-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9348407ea84650985b2adfb2deafb877a930132e74cfd5103b50c1fbd778f8ad
MD5 b582774a29400457cec5aa74d1e2cabb
BLAKE2b-256 95c8a44ff37bbff247d1015d441cd185cc4e8c79cccecd610785ef0a30cb3ef6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-4.2.0.32-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 605c400d7bd0d7f36fe781a1f9ae9ff253d3a3d6159300ad0f7d563a6608b72b
MD5 3291f299dde67652e597165170ec28fd
BLAKE2b-256 ace28b293694c9ed1c5156f3a481ea43032ee2bfac7c86d0224662f07edc72e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.2.0.32-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 39.5 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-4.2.0.32-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 f6956a63264fe418eb7ddc57fd445a4971d0a6b541b30deacaa8f5a8b8ed93ac
MD5 d84c7f86ba535b710e25f0573ae25df5
BLAKE2b-256 3183fc8313988f85b1c303fdf2d1193dd22e3a3103bf6e9cfec17328e087bc32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.2.0.32-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 29.5 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-4.2.0.32-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 7d02143db8d63d0532783b6f676887dd49ddb29c78044060b9edb07308a456ba
MD5 91d7f2fd1a9ef12d41c3ec94531f3193
BLAKE2b-256 38ceab6369cdc19697c48f5e2397c2dd389479885298f195fb520fc5798617cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-4.2.0.32-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 069fc51ffed441303020bad92b61b13c128241fa8786923c9cfb848b2f67a5e0
MD5 fbe395fd9ef5665e40e0e12ac372020c
BLAKE2b-256 64a15f7eeb4400467fd5c65f70fb82c8b32ce5d7b5527fe8b2aaff499b2fe0ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-4.2.0.32-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f8e13df213a0c21c179fbe6dbe63e4865e2ac22665bd8546f2a92885e98d1137
MD5 34818627871a57612668f410771678e4
BLAKE2b-256 6a3dba984b82d149d0ecd709b5bcfc6b5f5be8d348c66b815d01b0e3ac4f274f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.2.0.32-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 59.1 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-4.2.0.32-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 915e2e04ba6787fa6254427cef5c39d2b2267f47e8f5035d8be3bff7ead85a14
MD5 f8ae8be64c3e5c66207d8cb7160b123c
BLAKE2b-256 7a78e49c9592a575970ac1218c9249988ba94cf9dd16702ae7086c81cb8e7599

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