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

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.

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

opencv_contrib_python-3.4.5.20-cp37-cp37m-win_amd64.whl (44.1 MB view details)

Uploaded CPython 3.7mWindows x86-64

opencv_contrib_python-3.4.5.20-cp37-cp37m-win32.whl (30.8 MB view details)

Uploaded CPython 3.7mWindows x86

opencv_contrib_python-3.4.5.20-cp37-cp37m-macosx_10_6_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (54.4 MB view details)

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

opencv_contrib_python-3.4.5.20-cp36-cp36m-win_amd64.whl (44.1 MB view details)

Uploaded CPython 3.6mWindows x86-64

opencv_contrib_python-3.4.5.20-cp36-cp36m-win32.whl (30.8 MB view details)

Uploaded CPython 3.6mWindows x86

opencv_contrib_python-3.4.5.20-cp36-cp36m-macosx_10_6_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (54.4 MB view details)

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

opencv_contrib_python-3.4.5.20-cp35-cp35m-win_amd64.whl (44.1 MB view details)

Uploaded CPython 3.5mWindows x86-64

opencv_contrib_python-3.4.5.20-cp35-cp35m-win32.whl (30.8 MB view details)

Uploaded CPython 3.5mWindows x86

opencv_contrib_python-3.4.5.20-cp35-cp35m-macosx_10_6_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (54.4 MB view details)

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

opencv_contrib_python-3.4.5.20-cp34-cp34m-win_amd64.whl (44.1 MB view details)

Uploaded CPython 3.4mWindows x86-64

opencv_contrib_python-3.4.5.20-cp34-cp34m-win32.whl (30.8 MB view details)

Uploaded CPython 3.4mWindows x86

opencv_contrib_python-3.4.5.20-cp34-cp34m-macosx_10_6_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (54.4 MB view details)

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

opencv_contrib_python-3.4.5.20-cp27-cp27m-win_amd64.whl (44.1 MB view details)

Uploaded CPython 2.7mWindows x86-64

opencv_contrib_python-3.4.5.20-cp27-cp27m-win32.whl (30.8 MB view details)

Uploaded CPython 2.7mWindows x86

opencv_contrib_python-3.4.5.20-cp27-cp27m-macosx_10_6_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (54.4 MB view details)

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

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.5.20-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 44.1 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0

File hashes

Hashes for opencv_contrib_python-3.4.5.20-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c73131c0b685991513d0ba0e5e9cdab0702c5ab358e261641637c60c55c5d409
MD5 ecefa431908462cb4674f456915f7727
BLAKE2b-256 7bfaea106997db006ea2dc0a72e5792e84d1f2fb980c318bab905cc4679ec981

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.5.20-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 30.8 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0

File hashes

Hashes for opencv_contrib_python-3.4.5.20-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 0d743314495f19def98cf86110b54712a67350330e8394e63736b4c282388d7d
MD5 8a9371855fdd469abd929a82f0458f66
BLAKE2b-256 750df2233d1632db65cb82a40cb4b35d8d686c3a55ac29ade8a5bb15f4204327

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.5.20-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 405f1ba6620d9e9f9ccb1520b21ad3a2cf1909ad94e7d96cac087b37c2be2f6f
MD5 5a04078ba12381cdc2876a7b38ed0482
BLAKE2b-256 36cb7b6f38d67f3aedbf65dcd13583cbb5f890acc847dcb6d9820f5a8dd4163d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.5.20-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5dc6ca7dd29f1bc6d0aef1ae21f1b69ef3fcb2672cdbc48e3224f95af5f06f9e
MD5 ac2874a1784caa01ddc69a8afc98fe6d
BLAKE2b-256 bf736849e59d33e8bf57e58d0e67b57c98faeec8f721e6f6f143df703c88266a

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.5.20-cp37-cp37m-macosx_10_6_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-3.4.5.20-cp37-cp37m-macosx_10_6_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 8a0e338d74d3a17e9cfc9aace1e4bb7e8c485a4ab9ea5f2a697237e03c011961
MD5 50ce5e3a23a7b8bca931997f903aa484
BLAKE2b-256 23bed422db41b01e1fe9e5ab7b4a9953d2f2fff311f6f0ff4f05fd5bd79191fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.5.20-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 44.1 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.6

File hashes

Hashes for opencv_contrib_python-3.4.5.20-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e5a22a529b216862e5394cb0314df012cbb54cc47a51095165e54d2eee074096
MD5 b89d155c0eb0e4c02d4e132c3e7e5037
BLAKE2b-256 432badf905ed0dd86f7b44721bb1dcfc6d67d49139ec8599d881bbb64453bfcb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.5.20-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 30.8 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.6

File hashes

Hashes for opencv_contrib_python-3.4.5.20-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 2f3c77787a222184bc96e68afbd53d3df1ccee24a74be9ad7d885470e492e130
MD5 28bd5dbf1159575ef4c0d474a1150d5b
BLAKE2b-256 611cc1be9896f4c1d09bdf6812518fa6c69ab1e1783ecaf11e21f09264600981

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.5.20-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 95ea10cf234907688543eeac97553a7ce4c3f08e23b6bcd85707dfb92b4a56f3
MD5 753efeefad078d766af4e0db83c6a027
BLAKE2b-256 fc1546b68b9ae346aee3d4162b17c0a6e0699250a39aa6e734ee81e5116929c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.5.20-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3703a47499b0a012fe42ea10fb4a0364fc2731db1c04603e90e7e06c40484aac
MD5 8a88b0bba294c2667a0acd30dfdfd957
BLAKE2b-256 4f92f2191378b019c834693cee963589f5ae0d455621c779b16bea587b6c0888

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.5.20-cp36-cp36m-macosx_10_6_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-3.4.5.20-cp36-cp36m-macosx_10_6_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 1706d00c079c5d843d57c002e7c3d9740b7917a7bff663e4fb445314fce2e3ad
MD5 459f5b76cfa78adf33e7e447610fe7f5
BLAKE2b-256 d24a0355d3ef428dafba8c6159df940a9906046b43462c94b4e288c49ea4f9f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.5.20-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 44.1 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.5.4

File hashes

Hashes for opencv_contrib_python-3.4.5.20-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 ceb413fb4d95a01f803fc590203b0e4811014823f1dfe32a5b0235b61c2a3d24
MD5 bed0d71cb4f5623db74249b498ce2d95
BLAKE2b-256 5ad3f9774aab5dfa37fce6ae0d047177af92e0e7d463d1c3d588608999d3f21a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.5.20-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 30.8 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.5.4

File hashes

Hashes for opencv_contrib_python-3.4.5.20-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 0cd90d93904890f3ef03e5685c310f566e96e13de0dbc262f99692fc66cdf5a3
MD5 3f201d9ce374e871b793b01468164977
BLAKE2b-256 eb53e490869c5dfe486959b4ce57ebd8bc0aa73b16c41e0b0d4b4af037ec0944

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.5.20-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c964db2173e6e9eb5d9d6655a4ba19780a1a98d6d7325b2480c8c4d6d371058f
MD5 a462b1c809a3dd83509d64e6b25c4d3e
BLAKE2b-256 c71677a97f170e92033acfef5330052945a8e15c11e2a9630cf9779a37c5e8a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.5.20-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b427efc71ff1e858d327323ee1ec3e3f6dd459337ef12d7e9aa3c4164c452ece
MD5 4a8ba73480649b723b08e275bd765581
BLAKE2b-256 99b76034de6021a0afc273961dcb565a69808f12728137810295a9527714e4f9

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.5.20-cp35-cp35m-macosx_10_6_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-3.4.5.20-cp35-cp35m-macosx_10_6_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 2d7a6fd2f47d596a12c2f96db441c8f7754d8c0295fa5ee4cfe6304c61199aab
MD5 f92b2498cbddf6e68ca48253dbcd218b
BLAKE2b-256 35a0d4fcb684b1301434c2c90b749f6e51a1ad37e58ab4aaed630fd461abc8db

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.5.20-cp34-cp34m-win_amd64.whl.

File metadata

  • Download URL: opencv_contrib_python-3.4.5.20-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 44.1 MB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.4.4

File hashes

Hashes for opencv_contrib_python-3.4.5.20-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 150ee231316eeda3ca159db92b5e1acd9a3e8626daf5015b71e79048e354c3bc
MD5 39763794812fd4b6b625d3038ab77b09
BLAKE2b-256 ca3d03cc109bb61f27e7367a923d24f26db18f83b33a80f122254e7dc60e1b69

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.5.20-cp34-cp34m-win32.whl.

File metadata

  • Download URL: opencv_contrib_python-3.4.5.20-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 30.8 MB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.4.4

File hashes

Hashes for opencv_contrib_python-3.4.5.20-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 dd1244d58fee4bbd83f0dde782d675223bb4ebb07a830ad65d5fe53882ec2a55
MD5 09d47dfec1522ebd43342cb944bccd20
BLAKE2b-256 5ddd71a7db91fef0217d30e84d2f4d474c034b6a05424f4ede25be9388d04ecb

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.5.20-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.5.20-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8f6bafdd7985648b71604109d3c86fa6362b3ec7a9bf41d72244946f0ce21875
MD5 859d0003e647a3d48f7aacdc3b82021a
BLAKE2b-256 320ba78ef68d2556e25ef1e7a3e50204e907a4e68ab0d8ec4782342f533a77a8

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.5.20-cp34-cp34m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.5.20-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6b5df3167785ef7361119b778152fc1e6dec20da523b0625500579f91331f8b0
MD5 b3353a3349ce824a4743548d094496e1
BLAKE2b-256 4009fe3b584f5ebfea2a3a4cde00d6630a4377a4a093f29b4305e9744b4f2b9e

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.5.20-cp34-cp34m-macosx_10_6_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-3.4.5.20-cp34-cp34m-macosx_10_6_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 8f443de54d9da75633f5c7d27e443ada177f26e40c586f15032762cb5d71795e
MD5 70457ecddb5e5cca80a0ea8a6a034e27
BLAKE2b-256 30879713b6f7690d71f4b0eecd61dc5af3fd0f4ef78b180f67e5ce26c7ce3acd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.5.20-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7539b40fe944396c9e049004614f425b82a03ed40b11d925313340f0e8508842
MD5 5628df1e125d8b4b9a9e1717418763c8
BLAKE2b-256 bcf49c3e839736a8ef570458a94473f0a94e1d8deb0e25bbdccb5d54fc6d4d36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.5.20-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ec8a5ccf180ea0411280f6815f22075d81f95ec829679f07330678466f314506
MD5 a7fbb9576abb225d79fcad4188234dfd
BLAKE2b-256 a58a0dcf01e4f96f4fe4db7b9e18071163e017c730e92ab43089c5c23ac05f14

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.5.20-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 44.1 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for opencv_contrib_python-3.4.5.20-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 955f100725e2c1cf55bfbf9fe65ee16406faf72cd6f71e973dfae9fd9761ab97
MD5 6f0ceba2c8e0c454efb585d7fe5a2c7e
BLAKE2b-256 909b272513e2497b6711adb59ca353d3084a5a5237fabf8547945e896b4dfc24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.5.20-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 30.8 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for opencv_contrib_python-3.4.5.20-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 de8b28ea97e560c9f1c925bd2b9b1521c5b69e732fe7a4705ac2117c56e5bbda
MD5 eaa1f3482196af4cd7926732f2ae3533
BLAKE2b-256 47548a4fc7b88861595fa53ab8c6cdb0677506e5907fde4afcff331220787b77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.5.20-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e375eed31b2051aa4aa3310c515206a593a58776263efbe569562715c505aa06
MD5 573541670dadcf90893fefa627a70ba4
BLAKE2b-256 44e0d8128312edfacbc4e77b9b60e47e197b4ada306c82dacf09a2f58ec68432

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.5.20-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 790b057ff546a6d83a5c1b50c5e927a423571511e37247acf9961647be10c666
MD5 651c01954cc3032486cb5156ef7690b6
BLAKE2b-256 3b759d6fc824e095f8aba81f55a9e6018b739a045d3873a22bfa4ecf733c2b71

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.5.20-cp27-cp27m-macosx_10_6_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-3.4.5.20-cp27-cp27m-macosx_10_6_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 3f3d2fac3a38e3c8599acb16b684ca077e10c71add3eec00fd5a7e5bd845d69f
MD5 63de242c3da4bc78e8f37b6df9499eee
BLAKE2b-256 1153b61cc48777b7821947e000cedaf1788949230ee0b983d976e815da2495a9

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