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

If you're not sure about the file name format, learn more about wheel file names.

opencv_contrib_python_headless-3.4.8.29-cp38-cp38-win_amd64.whl (37.1 MB view details)

Uploaded CPython 3.8Windows x86-64

opencv_contrib_python_headless-3.4.8.29-cp38-cp38-win32.whl (27.3 MB view details)

Uploaded CPython 3.8Windows x86

opencv_contrib_python_headless-3.4.8.29-cp38-cp38-macosx_10_9_x86_64.whl (48.6 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

opencv_contrib_python_headless-3.4.8.29-cp37-cp37m-win_amd64.whl (37.1 MB view details)

Uploaded CPython 3.7mWindows x86-64

opencv_contrib_python_headless-3.4.8.29-cp37-cp37m-win32.whl (27.3 MB view details)

Uploaded CPython 3.7mWindows x86

opencv_contrib_python_headless-3.4.8.29-cp37-cp37m-macosx_10_9_x86_64.whl (48.6 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

opencv_contrib_python_headless-3.4.8.29-cp36-cp36m-win_amd64.whl (37.1 MB view details)

Uploaded CPython 3.6mWindows x86-64

opencv_contrib_python_headless-3.4.8.29-cp36-cp36m-win32.whl (27.3 MB view details)

Uploaded CPython 3.6mWindows x86

opencv_contrib_python_headless-3.4.8.29-cp36-cp36m-macosx_10_9_x86_64.whl (48.6 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

opencv_contrib_python_headless-3.4.8.29-cp35-cp35m-win_amd64.whl (37.1 MB view details)

Uploaded CPython 3.5mWindows x86-64

opencv_contrib_python_headless-3.4.8.29-cp35-cp35m-win32.whl (27.3 MB view details)

Uploaded CPython 3.5mWindows x86

opencv_contrib_python_headless-3.4.8.29-cp35-cp35m-macosx_10_9_x86_64.whl (48.6 MB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

opencv_contrib_python_headless-3.4.8.29-cp27-cp27m-win_amd64.whl (37.1 MB view details)

Uploaded CPython 2.7mWindows x86-64

opencv_contrib_python_headless-3.4.8.29-cp27-cp27m-win32.whl (27.3 MB view details)

Uploaded CPython 2.7mWindows x86

opencv_contrib_python_headless-3.4.8.29-cp27-cp27m-macosx_10_9_x86_64.whl (48.6 MB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

Details for the file opencv_contrib_python_headless-3.4.8.29-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: opencv_contrib_python_headless-3.4.8.29-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 37.1 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.8.0

File hashes

Hashes for opencv_contrib_python_headless-3.4.8.29-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ad96ae75c0455a2e811d36220fd710a8dfa0af3bc2603e58c0356b384c3be81e
MD5 58a77985c5e430f44a4de9d53e286e88
BLAKE2b-256 2b62e6a98c3982ca537caf7051d5e01249e7ad32876caed30fd9c8587bd25a40

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-3.4.8.29-cp38-cp38-win32.whl.

File metadata

  • Download URL: opencv_contrib_python_headless-3.4.8.29-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.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.8.0

File hashes

Hashes for opencv_contrib_python_headless-3.4.8.29-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e307d996798ab83f37269d3a56ae2e6dd71aa42a5b7412438bee54e8df648c0a
MD5 b376f3ec73534340921d2b5436e83661
BLAKE2b-256 a66843e7ccaa54b26e49fcd921d65dfdc35e00a1ce886d620c28b49175d118ea

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-3.4.8.29-cp38-cp38-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-3.4.8.29-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 602f3c2eead058fd9e7b77194aba917aeed1dcaa4a423d8d6418d9e2b9bd7789
MD5 daea073976f58630d695aff310c98a0e
BLAKE2b-256 854550a48c6deb819168ce974b8b8a731a95725d8e0815f1892bc767a1c78f41

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-3.4.8.29-cp38-cp38-manylinux1_i686.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-3.4.8.29-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ea391f4d8ef5928d8e9553f47c933c8b285a3f6baebc5cd3beccaf810d4d4c1b
MD5 de3bfeaa98d3e0530340f94c2cd4e1a2
BLAKE2b-256 a59d87ad48148b0def1c2a301232e9f1f66493aa6db8e97c2614e1f973301a2b

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-3.4.8.29-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-3.4.8.29-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0886185dad0cd01970d3eaae5f8ef2783c0724dccdb9626295aa9b8cfe83df20
MD5 776e8a2ad99d93e4d39056c5a8187f97
BLAKE2b-256 06dd06c44f73bc61d8322e6239edceaab05567fb355d0cb118dc980de7ec864b

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-3.4.8.29-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-3.4.8.29-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 64f4bebaee9b62d9462d5fa96f71dbc8b584cf72de7a36a0e094a48ed0f456fd
MD5 6621904a6d6bf1d283afe067ac7c9835
BLAKE2b-256 9426bf559040f8b59bfe947beb10c449086a88d1157919c1b4f15b16aa7e1be9

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-3.4.8.29-cp37-cp37m-win32.whl.

File metadata

  • Download URL: opencv_contrib_python_headless-3.4.8.29-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.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.7.5

File hashes

Hashes for opencv_contrib_python_headless-3.4.8.29-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 be757cb0a7ccf8360d4ea3d54d418d7d64c531081bbb547abb4f40e705050535
MD5 f4bc55d95616ec76b973d3ad9f36a7c0
BLAKE2b-256 8503a64130a845ec89717e536c2dc52b0ed8b37e131489d3e57d7a9135ca7b59

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-3.4.8.29-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-3.4.8.29-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3a910a6fedad531f42c5984a07b8515ad28bcd2ddaf78c33940cb293a770410f
MD5 4e39b2b5545ace9daf7e5c55e2489901
BLAKE2b-256 81c8919c4aa82b751e8d21158b36be7361cee2df14495b99f34aa43834d10ac1

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-3.4.8.29-cp37-cp37m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-3.4.8.29-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a74d20e0997e72bf1a11fa1c83799fb41f7641428d57040180b7caa212c4d4c4
MD5 777d44b302376ed0396cc422273b3d6d
BLAKE2b-256 2af27d9082fac7385050e709668c956fa76a2f6dcbe2161819325c1b0edf5f65

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-3.4.8.29-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-3.4.8.29-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d1c26b890756b1bfac13c24096300b4991b432fef5b9e62873bb8913e685f77e
MD5 af3709b8efe5cb70041707c04816f55d
BLAKE2b-256 4fc57fbe20eb928439287d5de6c767e8c9b1c7c6bf86e6bc939b8cab786397e3

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-3.4.8.29-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-3.4.8.29-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 756e87908a967065ed9ad212a92736a4ce47b3770255785887c0818e96f87292
MD5 75431458086010b147c9c659b6e23b05
BLAKE2b-256 72772918c54110148efe13a0ba74b60516c726852c842b2142001f3905eeba3f

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-3.4.8.29-cp36-cp36m-win32.whl.

File metadata

  • Download URL: opencv_contrib_python_headless-3.4.8.29-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.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.8

File hashes

Hashes for opencv_contrib_python_headless-3.4.8.29-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 3fa4579faffc79ebc5b3cd5bf4992cd222c2a05a9de0092923f69c3f52304e69
MD5 5ab536c6d752f5ddb2ce6ee84afaf092
BLAKE2b-256 fbe82375fc24e360f531e7ef4847d606685ca36d619e235e12f64b75f441a5be

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-3.4.8.29-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-3.4.8.29-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 76fa8fe700a75b269461665fd5cda0f1dd3c60b729052166143aa6d1660374b6
MD5 d281575d5cd3dd2d0885747291aa21a0
BLAKE2b-256 fa896b6f159cfdde0ff6986d83687cf9fe14f963f57a271b888797763634748b

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-3.4.8.29-cp36-cp36m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-3.4.8.29-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 04e80a5f7ce27bba99826e6d31ac4753206eaa510bf67612d492c81e145f7f4b
MD5 c4ee14c9eaa42e27ce031e0152f4133f
BLAKE2b-256 60f9ead6f439866658de4ab53b388d910f899ece50003f7938dbc65e31251d85

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-3.4.8.29-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-3.4.8.29-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8cf6dceac6dd8d0d0c5833097f7e3322ebd350340962162a08bb19b3676e1e15
MD5 ff87cdbf08666de7247ac8bba6d78711
BLAKE2b-256 117037d934aa8775073bc22ecc0ffd7405a6886f89cc28a153ada565154bf81d

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-3.4.8.29-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: opencv_contrib_python_headless-3.4.8.29-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 37.1 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/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.5.4

File hashes

Hashes for opencv_contrib_python_headless-3.4.8.29-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 c9ba9ddc88e87cfd819f574e72653d38a10bd88988b0e1a39c4dc5263425f21a
MD5 720280f1786fa8f8fe46d02bd4628d7d
BLAKE2b-256 5964a201336babae5f22faa2cba6e5b90125bdec9f1799b064559325435e37b8

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-3.4.8.29-cp35-cp35m-win32.whl.

File metadata

  • Download URL: opencv_contrib_python_headless-3.4.8.29-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/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.5.4

File hashes

Hashes for opencv_contrib_python_headless-3.4.8.29-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 ccaf4a5aeb34f724a4aadc1cd2ceeb7175536ded33e417f3aea2e4b8285a7d72
MD5 f5adc9deccbce06e16c8f49c2780adf0
BLAKE2b-256 c13de414f8aa9ae504e8efedddaa67ce0dfc0bcf7c9008956918185b3af044c9

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-3.4.8.29-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-3.4.8.29-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e9ab0e729b577a941594cffd90d971f71b8e711188b42b724e273294a481fd78
MD5 a28610137ed074430f6df6fb2bf1e67d
BLAKE2b-256 6293d707cf6d751bc56d4de43522a49fb8a2a39deb2590ae109fa40fd7cf5506

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-3.4.8.29-cp35-cp35m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-3.4.8.29-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 be4c6e1f9c74ffd6b150cd4a8e0e9548218aff1a7e7196c16efaeadba6594847
MD5 073bb6f30209af41eb6eda0c1e43c0c1
BLAKE2b-256 4ae5dad2265244e2bde7920bbbc317bb5fcfd5c57775412bce5908550a73cab4

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-3.4.8.29-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-3.4.8.29-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3a9f7eb35c4d0f6c92cea9aafc8946e293daaf1d9f50df936f0dd4bc45c23db6
MD5 f303100b490926c62739e8a19e85f3fe
BLAKE2b-256 2dfc895e9120aceb128b3d0ff5088fb21ba9ce86a18597775b9f35c3eae6e712

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-3.4.8.29-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-3.4.8.29-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c1b1121ed1bbcb5998611bb4a45fedbac8374ec8b3494a98e89c9a9f89abc9c0
MD5 8b5dbba01c1086694b28030d3f6bde53
BLAKE2b-256 7efd68d680baff28004864100e7f9ec6fdd40d71ec14ef7d2a9209543b794aca

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-3.4.8.29-cp27-cp27mu-manylinux1_i686.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-3.4.8.29-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 51a18ee2b2400970e6c82bab550eb5f64d6f1f8607eed29ae9dfffacd9859328
MD5 c29a7e636b7278a80e7f3a343afa6037
BLAKE2b-256 8015b34ffce6a8c5db8f3dd209c892a3a7758af2fbca72c444424aa6fa7741af

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-3.4.8.29-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: opencv_contrib_python_headless-3.4.8.29-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 37.1 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/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.17

File hashes

Hashes for opencv_contrib_python_headless-3.4.8.29-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 70124b20517e6981a45df984ccc6217bcb2b387635989d4e0f1bba505f61d770
MD5 0510d1cfa6e1147e939da8687dd4224d
BLAKE2b-256 28f2ebccdcf11c945d3a70eb23c45c4ce468a870875ae2e5216f969a76c0283c

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-3.4.8.29-cp27-cp27m-win32.whl.

File metadata

  • Download URL: opencv_contrib_python_headless-3.4.8.29-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/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.17

File hashes

Hashes for opencv_contrib_python_headless-3.4.8.29-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 58a12521bf6cf7a9f9745599cf80d4ac0a1cf2aa528147bb445533d511bad1f5
MD5 62a8bd39031bd834cdb742dddfe8f648
BLAKE2b-256 843511e905e18fde39139fa5edeb2c8fa3a415a4e60afd83405b810c13f26279

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-3.4.8.29-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-3.4.8.29-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2e1ba7219d12f31a17d91e33b67d897f55bee8013fc23319fa12874e4b30a116
MD5 484336714091ee853b40287db5a30b7f
BLAKE2b-256 d02b0a15164b2a3d6cd4e10689fbe8a0d51bf398b2efa055f53832e610bc5c11

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-3.4.8.29-cp27-cp27m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-3.4.8.29-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f54ff7bc71fc0dfe4abc468622020e349a3c963bca983321b39a0bc5667b1236
MD5 cba62099f0fc3eea692ff523e67d24b9
BLAKE2b-256 f90db5a8a9f0a0ba1532726c8294ecde3e3a53ec1bad9e6b14618de7ff579a5c

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-3.4.8.29-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-3.4.8.29-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 727b5b520aa9dc4c96827013be226a972fd3da6b48af9de9d9f400b5638693ff
MD5 977073677393d858582a65bd751e1d71
BLAKE2b-256 ad99c6e23ecb24f18b93acb947b6b0f655e110fa5510bfb2913d6b224a645121

See more details on using hashes here.

Supported by

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