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

Uploaded CPython 3.7mWindows x86-64

opencv_contrib_python-3.4.4.19-cp37-cp37m-win32.whl (30.7 MB view details)

Uploaded CPython 3.7mWindows x86

opencv_contrib_python-3.4.4.19-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.3 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.4.19-cp36-cp36m-win_amd64.whl (44.1 MB view details)

Uploaded CPython 3.6mWindows x86-64

opencv_contrib_python-3.4.4.19-cp36-cp36m-win32.whl (30.7 MB view details)

Uploaded CPython 3.6mWindows x86

opencv_contrib_python-3.4.4.19-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.3 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.4.19-cp35-cp35m-win_amd64.whl (44.1 MB view details)

Uploaded CPython 3.5mWindows x86-64

opencv_contrib_python-3.4.4.19-cp35-cp35m-win32.whl (30.7 MB view details)

Uploaded CPython 3.5mWindows x86

opencv_contrib_python-3.4.4.19-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.3 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.4.19-cp34-cp34m-win_amd64.whl (44.1 MB view details)

Uploaded CPython 3.4mWindows x86-64

opencv_contrib_python-3.4.4.19-cp34-cp34m-win32.whl (30.7 MB view details)

Uploaded CPython 3.4mWindows x86

opencv_contrib_python-3.4.4.19-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.3 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.4.19-cp27-cp27m-win_amd64.whl (44.1 MB view details)

Uploaded CPython 2.7mWindows x86-64

opencv_contrib_python-3.4.4.19-cp27-cp27m-win32.whl (30.7 MB view details)

Uploaded CPython 2.7mWindows x86

opencv_contrib_python-3.4.4.19-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.3 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.4.19-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: opencv_contrib_python-3.4.4.19-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.20.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0

File hashes

Hashes for opencv_contrib_python-3.4.4.19-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 09ae3400ad01fd8c9065a53275aede3f328ad540c793336f2e4c10df4678368f
MD5 7b340771e615c9a138c63868c4f3a480
BLAKE2b-256 7e9baaff3ef9974cbd4d7e2aafb660e6ef8546ff59523ce5f7f284269d14b3eb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for opencv_contrib_python-3.4.4.19-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ae1d235099d67622b5331534166d4d137dd897edc81d077702bc3e59b27e6f56
MD5 71aeec21836469b0cbcd8f87f21cbe53
BLAKE2b-256 b3d5581eeb0836ce72a7e2945a1494c10713788b8384194ac3933dd22e869f0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.4.19-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1bafbb04519add1c14a4212510beb4e79d4abedb3dd1e07e414c9bd4541b3ad8
MD5 e5aafce3bb85e00a21787ab57e51a89c
BLAKE2b-256 d603b8229e64a5d7b34adf9a448ad10bc020cb0097ee70fc0410d9cdec2d9357

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.4.19-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 547fa598a1f2511f8c47d9bc97037a4a950d981109c4be78a93206acb591af59
MD5 d6fbdb9a4e23b7adc91dd4f5ef6b94b5
BLAKE2b-256 69d519f91ea72280243d885549b96a4d86913e427293b0bd529c3c6694e5a1cd

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.4.19-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.4.19-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 5e9939aec0ba74c73366ec5e3f938390afda28e1eab6856fc62428f898f9e3b2
MD5 b9746d82bd832db061d4bc09434b79bf
BLAKE2b-256 931887865f32ea01c4d2f0671f8ecd97088b0440cd0b732f5f587a0f636fd2f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.4.19-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.20.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.6

File hashes

Hashes for opencv_contrib_python-3.4.4.19-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e41a40e4ad839b2753f81406b4b765a00e627c2c55ced1fc86e621e49249a63e
MD5 49e43c5e62b7cf0b2e50d80ac162c76e
BLAKE2b-256 a7f35bbdaa05dfea18d32d5af00b6d25bed8d81a0c2eaa278a41052be689b1ba

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for opencv_contrib_python-3.4.4.19-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 04e80efc7d10371694922fe69a718bb88e4775c6914244d7acc14a43a7371ac7
MD5 5e8c7217bb2523a314e4addf0bb64892
BLAKE2b-256 692a3759fbc765db22f16ce81d05b8d81326dbe2250a0f94d5f224d687568ba6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.4.19-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 352335ebed6fbb085d3dece31872ef516a14cb17f918d6ddf8646799e375c9b1
MD5 5664054f9e9d2517f2debd006d3ad57a
BLAKE2b-256 b7b926ddaf22a96b61f90c80305446db65a44a95273b9bcfa0880f0ed1119ca3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.4.19-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 dc17e773eaa46a7778f433a9e77435e3a9441dda997c2a93862c9a210e5b3e19
MD5 324c586479fefa8310183f0eca759531
BLAKE2b-256 a6904a15435c2bef62e1b48729ca955e2c9020200f556df2254ae8c2c39eff46

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.4.19-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.4.19-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 12f06febc1d006b1da169f71e91d760307ac3ef94b5b6d46b37246a74659ec8f
MD5 b25d4826c4ead86b73b6b1aa7ff22696
BLAKE2b-256 3afd962f7082e9604a4c34c11240a31a8156168f7bb66d280ef99567bb92639d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.4.19-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.20.1 setuptools/28.8.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.5.4

File hashes

Hashes for opencv_contrib_python-3.4.4.19-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 2207381174b282db53da27b7e7f2606c2abc1913b3544138febb4302dda1c44e
MD5 18bd66b62ba1c6940a9c9ea0ed2827dd
BLAKE2b-256 1b97f0ecbf3560877b2d923e3a706a5bf89167d0827c69372f94e857f5b177f9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for opencv_contrib_python-3.4.4.19-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 a467367704a2025640c6c96555b45269093c2eb8663115ede07b187c9b40d83e
MD5 6260f351da4ce157fbef91938ceb47bf
BLAKE2b-256 0f64aec7b501546e8c9e6bc6286dad74ad6bbfc48d59b42ef00325ac0ec359c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.4.19-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 577c2b3b2e71b0c8a3f652151ea0b4b68e082da637395ef31cca3e45bfed0c27
MD5 996b490d68ff9460a363e2c0f4b07450
BLAKE2b-256 5d794b6073b41df70899ddb0a1bb9bbde15e718766fbd4aa62f9ac238c993a6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.4.19-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5d85e582bc14518462ea8bfc482b577b9e906b2d8a74de351918f77d1d5abc28
MD5 0a91af911eb6bf4c9615fd3758cb5907
BLAKE2b-256 86da77e0908ce7d1939d613f657888aca316214905d5259af12f209124e4b532

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.4.19-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.4.19-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 cce079028c5292bfa0bb4daf287b29ee794ff9d62af59f75e84fabab2c4e522d
MD5 602a47cd6a1d647287f3062e14e48876
BLAKE2b-256 fd684625222f029ac05962f3b767e8936c792f9793032e158e10f689113a1bfe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.4.19-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.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.4.4

File hashes

Hashes for opencv_contrib_python-3.4.4.19-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 c555b79825995881f868810db6e4c31b2ce1a368cd0bec57f73e59ff5b83890f
MD5 83f2d137893b95a6f84b338a42fc0757
BLAKE2b-256 bff480af48b661da866710ff58a376c154a67084814aa8edb1af96c03db6ee75

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for opencv_contrib_python-3.4.4.19-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 60b6bb2df213693bd1a195c26c545571507e0cbad167aed77e65020481869f89
MD5 a3c6226b0c49b0f9b339c3935ffb5b5e
BLAKE2b-256 6e40442fc90934201a9e100ca60a91dfebf33517c497b44a56b768c378a5358e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.4.19-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bd47075b4f6616aaacc36c7717f763c2c5cc4674a036fe9510968c35de7b620f
MD5 7415219a714fb326635beea4316c15bd
BLAKE2b-256 823ecd0bc2afb1430e303b14a196fa1314619df4b0384b5f60fdc14f59fd8409

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.4.19-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8d96f3638e535429704e4d67b609c75f6f14c47b5b0b3bf76f1b1a9be91cd330
MD5 e01b8b3ea35d62d7ef534a88a0b1b8d9
BLAKE2b-256 40853c13fe1ccbe0c1f08c855a590300a4cd9335d14b7927ba06c60481cf86ac

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.4.19-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.4.19-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 6840cce5943b6b71a1905b0dd87038c35952a0cec7dd3ca18d29a33e3969423c
MD5 40d6bc85326991afa11ed0f8ab991709
BLAKE2b-256 dc4c16cb30854f6314b037ca2facf827c5adf52cd482df62455dab3968477fea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.4.19-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 42a2c0ef4a32b0ddb675c0b3786ef805aab0555c87d31f31e6ca5c580aebcf11
MD5 de58f87d3dcc043f6537b9ddaf1aef3b
BLAKE2b-256 9287998d1d8c5a2c086e4be5b3d4e2eb073f5e1711c081c7d5b29bf3499083cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.4.19-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7a4e2f5e9fba0c82558a027533198680cc1820742fff6d6bcd59781124e451cf
MD5 88790fd7903f6b5eb1d6b04ae81a662d
BLAKE2b-256 ea6941ea2d81c7f72d055e250b6fb7e91b672831e0eefb9ac3332f5abbe02535

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-3.4.4.19-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.20.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for opencv_contrib_python-3.4.4.19-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 25e09e53cfdf677b02bea5b016d0bb267497bebfb201e0ad0cf70a91f4e1d888
MD5 f15a1eaffcc25d5642f057f9a9343fae
BLAKE2b-256 05a6941bceaeb4040e46e1883931b9f3bf6578e3382783982f7a49fde614947b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for opencv_contrib_python-3.4.4.19-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 0f614c9ae12e4d5a04eb7bdf7bb2c244274b3da72a8c40658d30eccd2aa0694e
MD5 f5ee83ff33626528254e15b3bf6e4f07
BLAKE2b-256 191dd5f4ae6e192145b3bd7be2b10fbcfe5803f12c73ade5bf5005df0a612129

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.4.19-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c95c569e5ee706b88f08c076bbc21005ed39533eaf2056b958c8a20b37cf270a
MD5 5304146e80cd5e9ac1895bd4d224ec92
BLAKE2b-256 20ea7be6d7fa4e485ccbd96197748698e3d47c8fb5debb7a94c4d1378f6d0315

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.4.19-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 55927e00eedf14f3f4e698717cb8d949ae1208d00c3e85340ec64bf00878fbf1
MD5 71b063cf0d0b2e3621fbe50529479ab7
BLAKE2b-256 47aba45e78bbbb34dfced646790906311855024a1bfc2d4e5dbd90f5d5a6391c

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.4.19-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.4.19-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 95c46ffd88422fddb22807ca263a79417316f9b9c2f4eabeb9419d187a47be1c
MD5 71a8ee40235e629ff2dd911cd0c19946
BLAKE2b-256 7cdb1d279ccfdfaffb0a8ec206e2882a4278ea0fe4f50f6568152745885ae8aa

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