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. 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
  2. Find OpenCV version from the sources

  3. Install dependencies (numpy)

  4. 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)
  5. Copy each .pyd/.so file to cv2 folder of this project and generate wheel

    • Linux and macOS wheels are checked with auditwheel and delocate
  6. Install the generated wheel

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

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

The cv2.pyd/.so file is normally copied to site-packages. To avoid polluting the root folder this package wraps the statically built binary into cv2 package and __init__.py file in the package handles the import logic correctly.

Since all packages use the same cv2 namespace explained above, uninstall the other package before switching for example from opencv-python to opencv-contrib-python.

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

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 follow Numpy releases. For example Python 3.3 is no longer supported by Numpy so support for it has been dropped in opencv-python, too.

Currently, builds for following Python versions are provided:

  • 2.7
  • 3.4
  • 3.5
  • 3.6
  • 3.7

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-4.0.1.24-cp37-cp37m-win_amd64.whl (36.8 MB view details)

Uploaded CPython 3.7mWindows x86-64

opencv_contrib_python_headless-4.0.1.24-cp37-cp37m-win32.whl (27.4 MB view details)

Uploaded CPython 3.7mWindows x86

opencv_contrib_python_headless-4.0.1.24-cp37-cp37m-macosx_10_7_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (48.6 MB view details)

Uploaded CPython 3.7mmacOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.7+ x86-64macOS 10.9+ Intel (x86-64, i386)macOS 10.9+ x86-64

opencv_contrib_python_headless-4.0.1.24-cp36-cp36m-win_amd64.whl (36.8 MB view details)

Uploaded CPython 3.6mWindows x86-64

opencv_contrib_python_headless-4.0.1.24-cp36-cp36m-win32.whl (27.4 MB view details)

Uploaded CPython 3.6mWindows x86

opencv_contrib_python_headless-4.0.1.24-cp36-cp36m-macosx_10_7_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (48.6 MB view details)

Uploaded CPython 3.6mmacOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.7+ x86-64macOS 10.9+ Intel (x86-64, i386)macOS 10.9+ x86-64

opencv_contrib_python_headless-4.0.1.24-cp35-cp35m-win_amd64.whl (36.8 MB view details)

Uploaded CPython 3.5mWindows x86-64

opencv_contrib_python_headless-4.0.1.24-cp35-cp35m-win32.whl (27.4 MB view details)

Uploaded CPython 3.5mWindows x86

opencv_contrib_python_headless-4.0.1.24-cp35-cp35m-macosx_10_7_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (48.6 MB view details)

Uploaded CPython 3.5mmacOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.7+ x86-64macOS 10.9+ Intel (x86-64, i386)macOS 10.9+ x86-64

opencv_contrib_python_headless-4.0.1.24-cp34-cp34m-win_amd64.whl (36.8 MB view details)

Uploaded CPython 3.4mWindows x86-64

opencv_contrib_python_headless-4.0.1.24-cp34-cp34m-win32.whl (27.4 MB view details)

Uploaded CPython 3.4mWindows x86

opencv_contrib_python_headless-4.0.1.24-cp34-cp34m-macosx_10_7_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (48.6 MB view details)

Uploaded CPython 3.4mmacOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.7+ x86-64macOS 10.9+ Intel (x86-64, i386)macOS 10.9+ x86-64

opencv_contrib_python_headless-4.0.1.24-cp27-cp27m-win_amd64.whl (36.8 MB view details)

Uploaded CPython 2.7mWindows x86-64

opencv_contrib_python_headless-4.0.1.24-cp27-cp27m-win32.whl (27.4 MB view details)

Uploaded CPython 2.7mWindows x86

opencv_contrib_python_headless-4.0.1.24-cp27-cp27m-macosx_10_7_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (48.6 MB view details)

Uploaded CPython 2.7mmacOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.7+ x86-64macOS 10.9+ Intel (x86-64, i386)macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: opencv_contrib_python_headless-4.0.1.24-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 36.8 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for opencv_contrib_python_headless-4.0.1.24-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 60ef5d4a518adc5ae836a1297c49bdf13cda2fdaaadda4308633a9f4f688aba6
MD5 f67e5247f934e2be3cd9eeb52fc3eaaa
BLAKE2b-256 7e33dc658d8d9994744b7112fe2a35a5ea70391810eb61b9ff4405d772c4a687

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python_headless-4.0.1.24-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 27.4 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for opencv_contrib_python_headless-4.0.1.24-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3b91d7c10286f2c62ac102d1b046e135aa0a30b2e694ac326a174a53131376b2
MD5 f671d954ba4363326ee5177d13e51539
BLAKE2b-256 a5be5c20e054b009a2eb96d5eddeed3952629a4f54352f9ce6199680f16670fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.0.1.24-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 62ddf352644b284fb05835dc089f19b8a12bda288d9c2b5b7942104baf31ca1b
MD5 2f535fa71c02335057204d1e0d62d0a8
BLAKE2b-256 c39e6579e53e8eed1d09f6c4cc3bc55413b180de73a8d2d8e9043cb3dea4941b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.0.1.24-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ada4b6f568a621884e818957a79b51d1f24a6d88bb0080a4b946325e4446e2bc
MD5 e4fdcbe5703bba148552f65e57d198b9
BLAKE2b-256 23acac1fb764b716b44ba5b2be48fec3ba2bba3fcb4c9913f68296cfc0eb16cf

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-4.0.1.24-cp37-cp37m-macosx_10_7_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.0.1.24-cp37-cp37m-macosx_10_7_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 c70c835cadeeddb410528fdf036e660edbb9d66b735416384a3eafe810bfa68a
MD5 6e68cadb8611925d1989372e3d320314
BLAKE2b-256 26cd44aad010c7ff7032b0e1439f74725d355937e4e61ab67f2585a456f8252f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python_headless-4.0.1.24-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 36.8 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.8

File hashes

Hashes for opencv_contrib_python_headless-4.0.1.24-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 923d88dbd24bec0d187d76dfb755acd48dca885e981156ad65c12464d86b67bf
MD5 505af9b14f511801b434bb3dec1846d6
BLAKE2b-256 fe1efda9340ecb11218abc03fdf837a8a3bc0b37f9d29b427ca7247f9af32d29

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python_headless-4.0.1.24-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 27.4 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.8

File hashes

Hashes for opencv_contrib_python_headless-4.0.1.24-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 4af8e28ce38a6b768a40bfb8e8819b880eb919dac1322e2dc6eb9e4aa40c8492
MD5 fb3977242e2e5a3b0bd3a9bfec745c48
BLAKE2b-256 f7f97dd65c65f8b844d7a0560a7db5639c8d2224be29d32767dcbd59efc3c347

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.0.1.24-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a623e4dff1f54317e18199bd6ff865bc2b8caeb384771c845eafbaf740642dd4
MD5 a927fe51169059581c0b327d24f67beb
BLAKE2b-256 cb7f5d096354f08c5d0eeb3a286b282ae5ec92cb35c8c92a670e4e25bfd9ba7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.0.1.24-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3830d03a58f0ef037436a7eaaf3915daecbe259e406b32da83ec864a313b881a
MD5 829d2b146522f0cd8318fdb2a259d501
BLAKE2b-256 e675dffeaf17773781f4d242b93b15b660be55456ec5223655985de60a4688a3

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-4.0.1.24-cp36-cp36m-macosx_10_7_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.0.1.24-cp36-cp36m-macosx_10_7_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 28e6aca8a5f32a28d590432c94221f2b7bfbef1131e121226a5493564be9bbb6
MD5 027812e0b1baee1e8e71ab695a260493
BLAKE2b-256 bc402f3e8342776b8472f14b8b28e70437cf140b32c77f7c9ff1c042bb0cfbb1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python_headless-4.0.1.24-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 36.8 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.5.4

File hashes

Hashes for opencv_contrib_python_headless-4.0.1.24-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 a1ddc2fb6bb6f92ee2ea4183a693ce8a13b3fce4afd5aca090e48f7329c8f71d
MD5 de0364ee839753b637c7115d71b5bf04
BLAKE2b-256 e05db62d121dd0f8111ac57dea1a76b7975e4fd29365eaa5ff69f29b745b0e30

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python_headless-4.0.1.24-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 27.4 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.5.4

File hashes

Hashes for opencv_contrib_python_headless-4.0.1.24-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 ae0d83b9c7ca138535237d3db12f79fcbd1a5da81d9ae6d9ded0c757718869e4
MD5 a192bd1e810e314ba24b74196507209e
BLAKE2b-256 d56faf59c5a158f6c1284faab8783c32e2a03bf8c5a96dc9ceca71c9e7cd8efa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.0.1.24-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3ddaf4be5f51b22eda7edb14c908577b3007925bd5aa02a8b943a1c01060c2cb
MD5 c0d00ad4527a8bcdaf2a64242ab0db1c
BLAKE2b-256 3f00e813a9766b720ab6bba7784fcf437767fbc1797219da0a28347e7aac73ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.0.1.24-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f58a137508bcd170f446f9136edb3673859bfda72609d83c4d9126ad56ebd045
MD5 bf508ee2d3dff26f4d9196335b7567b9
BLAKE2b-256 03455bde58557c3af7cecb7589cd756eecc31a8d0962d0f16ec6109e75c077c8

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-4.0.1.24-cp35-cp35m-macosx_10_7_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.0.1.24-cp35-cp35m-macosx_10_7_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 055d60fcdae9b1d7ee1b6a26317a39989514904aabf5cf88c174948fc721aa25
MD5 49663324c81e1a0080cc098540d27b8c
BLAKE2b-256 35098eb5dfa40c5da2ba583ff8cd674b05e46d2d77e89b1582e24da8a4db78e8

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-4.0.1.24-cp34-cp34m-win_amd64.whl.

File metadata

  • Download URL: opencv_contrib_python_headless-4.0.1.24-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 36.8 MB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.4.4

File hashes

Hashes for opencv_contrib_python_headless-4.0.1.24-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 1d1bdae700729c6981966ee103918ee94d808cf7f2fc064681099735964e2536
MD5 555483f014008fa689f5cc40b1ce97d0
BLAKE2b-256 089d9a961aac476e738d5f8496066aef107a78bab474e7788d22327899bd72c0

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-4.0.1.24-cp34-cp34m-win32.whl.

File metadata

  • Download URL: opencv_contrib_python_headless-4.0.1.24-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 27.4 MB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.4.4

File hashes

Hashes for opencv_contrib_python_headless-4.0.1.24-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 74d0b0bf7a6533b86100130800a6186699620d538a0a84f88cc25525f9583fc5
MD5 39fd1833eeea8bbfaf7ba809d3da67a9
BLAKE2b-256 4d08f4f6207c0d57b13c74e76d44e3e7670d327bbae6ceb6c4824603736bf8c0

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-4.0.1.24-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.0.1.24-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0f442acef3542c0307d4cb346e466d688732aa7e74620870aed81f3adac2c90d
MD5 6791c2de5be1285d0b3c3671c6602b87
BLAKE2b-256 378f7aaa2bc17d02da59f7a24e827e04a8c438c16c1e0b802665d1fb7b6279ca

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-4.0.1.24-cp34-cp34m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.0.1.24-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2f3ecd2c6113e8d5085be8a0e1ff7f30e04a8a2965db23d6838c093d976e4085
MD5 8e1cd69ffc1f1c959a5a84b7ce97b6e3
BLAKE2b-256 dfa2d19ca815e9c5fc1bfa1c16af4e35a578c1785e60f4460125a696c0a2f13f

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-4.0.1.24-cp34-cp34m-macosx_10_7_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.0.1.24-cp34-cp34m-macosx_10_7_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 819f0a2c9621dbbd7694e19065347e5bcd2d3a7f3968bbc3abffcf0bff65731d
MD5 dfeed77b16bb038817bc5b0fd40dddf7
BLAKE2b-256 191bcb589b6ed7e7b172be189eb9c2a387ea4173fbf9dff32762fc4355c862b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.0.1.24-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 88adfe514bc6f66b5f0f302152e4287c3059e1ac88abf59f849744248dfe8744
MD5 92223fdaea78e55c4022484018d8d423
BLAKE2b-256 ab46a9551a8bfbc4c453d8163033ef2d44686591bf54d07f52f3b6ad74e60741

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.0.1.24-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 436f56b0e6c57806d5de62585e0a6075258b86555d3e5d6b020f05d0174972b4
MD5 1946c690add13d94d621d82bdb28fc30
BLAKE2b-256 54db87d3149a355d3e4e6320fa2bef15a1b0329be9809a194608d2213d6e53d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python_headless-4.0.1.24-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 36.8 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.15

File hashes

Hashes for opencv_contrib_python_headless-4.0.1.24-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 90a58a47ae7b597713a86dccc99b9ccd64ae264e80bdd1899da6d376911e4c00
MD5 1504bbd06765d6a4a62e52857e992ee0
BLAKE2b-256 0981501b51fb8995bf91fbc33b712d3ed752b468aeb8a6ae37b6a7afbdb776a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python_headless-4.0.1.24-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 27.4 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.15

File hashes

Hashes for opencv_contrib_python_headless-4.0.1.24-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 2a1fe9b2f83cb30a04106d21eb8eaf1e7e187d3a3719eff0b1a1e6aec1e98adc
MD5 ea0fb54a6c4981943a6e88cc077e23b4
BLAKE2b-256 7b242d27af87816260d207140454a26fd3afd8b4b3d4a0fdfbb95b51f647b1c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.0.1.24-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 36ddfd53985c1a07792ec1e29f4e8e51d9159a16f7e5536d4427b9739133a2fd
MD5 a3c095a4405bf9053317d29c6298a332
BLAKE2b-256 a88078e5f76e1dcd279db4af44646ccb32501bcf4ad7a0ae0728a3e391a3ae83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.0.1.24-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3d1c5d2d1ab67c5317b611b3399947f906dcce1c74c489b1c8f45878e0246bae
MD5 c8fea1334bbf2aa41054e83f6082030e
BLAKE2b-256 f99cafad37052ffbea56f5dbb457741231fd4540c5d23895dbc8f2004c419852

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-4.0.1.24-cp27-cp27m-macosx_10_7_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.0.1.24-cp27-cp27m-macosx_10_7_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 130bf853365d0fabcf2e556a29fad001f36bb11dab3e2ca90693475847e074c1
MD5 e39d7c431edd2025c8253bf2f2584434
BLAKE2b-256 dfc44ed6bcb4becf06cbfa95365ac1caba6003cd2a1e6efdfa266bafbdff7a76

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