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 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 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.

Manual builds

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

  1. Clone this repository: git clone --recursive https://github.com/skvark/opencv-python.git
  2. Go to the root of the repository
  3. Add custom Cmake flags if needed, for example: export CMAKE_FLAGS="-DSOME_FLAG=ON -DSOME_OTHER_FLAG=OFF"
  4. Run python setup.py bdist_wheel
    • Optionally use the manylinux images as a build hosts if maximum portability is needed (and run auditwheel for the wheel after build)
  5. You'll have the wheel file in the dist folder and you can do with that whatever you wish

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

Non-headless 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.

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

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

opencv_contrib_python-3.4.10.35-cp38-cp38-macosx_10_9_x86_64.whl (60.5 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

opencv_contrib_python-3.4.10.35-cp37-cp37m-macosx_10_9_x86_64.whl (60.5 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

opencv_contrib_python-3.4.10.35-cp36-cp36m-macosx_10_9_x86_64.whl (60.5 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

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

Uploaded CPython 3.5mWindows x86-64

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

Uploaded CPython 3.5mWindows x86

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.10.35-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.0

File hashes

Hashes for opencv_contrib_python-3.4.10.35-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5c1b269416eeb8620a85c91ea61aa5655385c4120de1377b913f15bb7f028ad2
MD5 ced5834e1c9e2b6a49646276ca339ba1
BLAKE2b-256 473678b7d2cef4347e4bf476a5f4407dd92d9b1aad7b38472e0b37423f044ee3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.10.35-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.0

File hashes

Hashes for opencv_contrib_python-3.4.10.35-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2679b123b326c2661f1f22315c536b5b2c9a002f898dfaef38cdde07de6f8002
MD5 91fdf0137070b2d0cf9adbe59f47baa4
BLAKE2b-256 6ebb056c22190eb2f7479923583df4dcf44f0194cdedbbe6f21f4bae99e1a252

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.10.35-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f39f3d43bcabdd6ef8188f5a4d7b6401e0e36041c0027ce0e4e4380b8a67d9f
MD5 84324d9d46fee847587446870977b405
BLAKE2b-256 02414775c23f48baa879f37c7ab9da1022ad3fd08a7220c930f62e4090ff5039

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.10.35-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c77d4a996b245b60c1618a95a26591c4f7e2c15a5f3d75f06bcc45b98596c3ba
MD5 d5984976f0a8448cb1623b63f36247e6
BLAKE2b-256 64d7e783886197729f3135eb42420cdacd3b0d6d2baacec994da92c8f9059ec8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.10.35-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 60.5 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.2

File hashes

Hashes for opencv_contrib_python-3.4.10.35-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 09854f6ab224bcae673205ae76dc008a79d6b6f97421e4296900710eaa6b379c
MD5 b4cecd68e72da6692de5c9581f895dff
BLAKE2b-256 58982ff3ab3eee4434acf30f15d75236a6794d3c8749681734e39298e6798cc1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.10.35-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.5

File hashes

Hashes for opencv_contrib_python-3.4.10.35-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 48a8d6ff5938e9e7a10907653475aa80c6e1ac9b1d628dc35c292b5923fde469
MD5 7dfc81106d34d63277b110db8de59fbf
BLAKE2b-256 67cf6dd6e2fa12852d04853ac14aeee26a31c76d87fc20f5995b601f16b60efc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.10.35-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.5

File hashes

Hashes for opencv_contrib_python-3.4.10.35-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2ffae8a1b87724c5deb59eac1a2f575055fff4c2a054193918703f33d1e45e53
MD5 a8f897abd02cdbbde73d074c274a1f9a
BLAKE2b-256 cbe8118dbe80dc4ee51e43ebc0c92e2927170e3af1098054d1084d66c5b764fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.10.35-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa55d02d076186e6aa0949864d567949208019739836e166688dfe6f76d5aae8
MD5 840dadd0b8b361cd74316d94ffbc973d
BLAKE2b-256 c21023351b8b879310d4003e544ef56ed1b0d59db884ae415f52c05f058dc58e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.10.35-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 151242a5bee67e4baf85fe02297c1ea32f9def22e3897a70afa2dae37f81b4b1
MD5 17b80ec99811e50e0e9c309f021f76ef
BLAKE2b-256 0adc9448e9f43819fee4ae1b9c7d144f23b3042190227c16136e776376e22efa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.10.35-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 02d696972870b4819e1d393d544e4fca288614f4bf96cbbca1d6f34c94d4b5f3
MD5 00f89b85b6d8e10f14172f05c775fee3
BLAKE2b-256 9ff898c917a5b3f90005eaf5cc65258c695f3201542c3cce70f665197217371c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.10.35-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.8

File hashes

Hashes for opencv_contrib_python-3.4.10.35-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 98a39c5e8a0727bf17c80110acc9d8ea2edd55c51c61255ac0b4a67c377ed489
MD5 654a2dcbb0009e1f8086cac2e56d0757
BLAKE2b-256 d2054e26a7105c5407632eff4797d3799b002376c2713a7305647ae383862998

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.10.35-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.8

File hashes

Hashes for opencv_contrib_python-3.4.10.35-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 608e347bda09afdb41478568ecafa7452401c60e08eb4dd6b8ff9b305a9b16e5
MD5 8acd0906072755e07df91a9c17b9009a
BLAKE2b-256 0037ca1dce2ea2d3b71209f9d33fe8d4a850582fbc26a967d0f0bdb246dce21c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.10.35-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b27986aa0e739f2f21b8b775209ba720ed87b42df0a6f06e467aa7cf43784a4
MD5 2ca526702e3fbbff36cea80c5c078ab0
BLAKE2b-256 ff56eabd4ff0d17a4af2f002e0ca4cedf5e6fd98f582b9b13943059a6005194d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.10.35-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6f5d1a6edf63a940f39990a42ad3d50eb3a7a62dde872ff692c5592792cdbc75
MD5 393e29a07ba6804a6d936901a166844c
BLAKE2b-256 296c26eb5086fa69dfb01489b9de712efe0f58fbfb6638b726468787a7ab0ada

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.10.35-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3d2d4db192af528085e3d86fe4625e85c984df018474c0ae3b6155ed8794c21e
MD5 a9b2d7e234ed63f7d5d2c9c156064580
BLAKE2b-256 93b60d239bd0ee579ffd9c3e4fa6f71500256e50de00dd4780c2538fcbf2ab8f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.10.35-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.4

File hashes

Hashes for opencv_contrib_python-3.4.10.35-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 40140cd8229b773eced23e080de2eb925cbe7eb66970779425445f09f588f54e
MD5 0ec6866a48ec7c7a16106f78f36462ca
BLAKE2b-256 52e97b77fc3fb6aab4c976a843199d87cde6094cf58b9bb907e5119a90360b36

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.10.35-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.4

File hashes

Hashes for opencv_contrib_python-3.4.10.35-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 5c9835296be356199f12b0aeb4e0d659d86239329ee42568fb43c03328ffd336
MD5 995691deae8c57da28c0e80ba7b8341e
BLAKE2b-256 ace8f1796a7122dd5eab54bd3c2504f3304a36a960f0ef163719da653fdcb885

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.10.35-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e55a641114c5981aa3cf310f935f17fcf5f62f42b7355447c7f2ae547ecb5b50
MD5 ec443bdd1c59c97ddc1f491dc5a52eda
BLAKE2b-256 a0507e6fb72119e97706e8f737b23a83ffb4501390784c6a93d9e203a1d376cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.10.35-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1169b4386f3784ef31abf8be7c4e739b62e7b8f6578e04cb8d66c961acbfd1f5
MD5 12fbf5b33f4e88c841a0bf5c31229228
BLAKE2b-256 69afa736f1b8bad85a80b757e7132fb9f279d1c68304f246f19ac28c22496240

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