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

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

opencv_contrib_python-4.1.1.26-cp37-cp37m-win_amd64.whl (45.4 MB view details)

Uploaded CPython 3.7mWindows x86-64

opencv_contrib_python-4.1.1.26-cp37-cp37m-win32.whl (32.4 MB view details)

Uploaded CPython 3.7mWindows x86

opencv_contrib_python-4.1.1.26-cp37-cp37m-macosx_10_8_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (61.5 MB view details)

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

opencv_contrib_python-4.1.1.26-cp36-cp36m-win_amd64.whl (45.4 MB view details)

Uploaded CPython 3.6mWindows x86-64

opencv_contrib_python-4.1.1.26-cp36-cp36m-win32.whl (32.4 MB view details)

Uploaded CPython 3.6mWindows x86

opencv_contrib_python-4.1.1.26-cp36-cp36m-macosx_10_8_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (61.5 MB view details)

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

opencv_contrib_python-4.1.1.26-cp35-cp35m-win_amd64.whl (45.3 MB view details)

Uploaded CPython 3.5mWindows x86-64

opencv_contrib_python-4.1.1.26-cp35-cp35m-win32.whl (32.4 MB view details)

Uploaded CPython 3.5mWindows x86

opencv_contrib_python-4.1.1.26-cp35-cp35m-macosx_10_8_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (61.5 MB view details)

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

opencv_contrib_python-4.1.1.26-cp34-cp34m-win_amd64.whl (45.3 MB view details)

Uploaded CPython 3.4mWindows x86-64

opencv_contrib_python-4.1.1.26-cp34-cp34m-win32.whl (32.4 MB view details)

Uploaded CPython 3.4mWindows x86

opencv_contrib_python-4.1.1.26-cp34-cp34m-macosx_10_8_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (61.5 MB view details)

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

opencv_contrib_python-4.1.1.26-cp27-cp27m-win_amd64.whl (45.4 MB view details)

Uploaded CPython 2.7mWindows x86-64

opencv_contrib_python-4.1.1.26-cp27-cp27m-win32.whl (32.4 MB view details)

Uploaded CPython 2.7mWindows x86

opencv_contrib_python-4.1.1.26-cp27-cp27m-macosx_10_8_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (61.5 MB view details)

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

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.1.1.26-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 45.4 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.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for opencv_contrib_python-4.1.1.26-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4245cc246c4007d6cf3ac24e05dc6b9b24e1204eeb0a22089a90d4162e8b8d0c
MD5 f359656609a92c0c56d4de6bd9a5bdf5
BLAKE2b-256 00a3dfdbd5db6ba7f5b5a34d969c7508866c48826c61eb5e2c913d27f8784ff4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.1.1.26-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 32.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.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for opencv_contrib_python-4.1.1.26-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b4f5635703726c98d95c50d5a4912ef38f571a8ff99ec4ddaa2174529101cd53
MD5 1650793b06402ce0ab991e7e4d22a89d
BLAKE2b-256 9e91373186b02947bbc94a630775a005150602dfe33e4d0e77247f9ab4072109

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-4.1.1.26-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8bb6bb04028af3b6df763a6289ac41906960a4c47415db0856048c02563e3d0e
MD5 8cd88e9dcfca2544d0fb129b7495ae53
BLAKE2b-256 b539652dd2060ed9f60cf828f7d3ceff99e6aa469ce689ffa74aaf394b73fdd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-4.1.1.26-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7d545fc5fc8b55bd0508a736f42490154784f95f43015bd94aa388fc034cd67f
MD5 765ca719148f533b2dbba5c4b7d83bb8
BLAKE2b-256 010bfae80f99a39432d9ff8cbbf2d88ade54dff9dcc0946f94be8ec12c24fe1d

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.1.1.26-cp37-cp37m-macosx_10_8_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-4.1.1.26-cp37-cp37m-macosx_10_8_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 e60ea4db1fe54103407a62d4c32727357bf2717d775b7299bcc314a7686d3c11
MD5 736ae8911f49680c91238ac33760fbae
BLAKE2b-256 00ee94d11d1debd8b3fe46479e7b9479006432de14576714f9b5c4d2a72a14c5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.1.1.26-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 45.4 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.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.6.8

File hashes

Hashes for opencv_contrib_python-4.1.1.26-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 0f844f2977efe5a7e350d5cb89e9d39fd6040e70c00161242b8847ae2a9ecb9f
MD5 c6d2a251311f1ae0fa2348332f61ad6e
BLAKE2b-256 ba0d40121ed697f6105b9ffafc0e455e955ba8cbff2dda239cf188d24525be5b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.1.1.26-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 32.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.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.6.8

File hashes

Hashes for opencv_contrib_python-4.1.1.26-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 3a2af59e65182192897c59b789003088647a8f45f5e1f7c31a2f650d810b8ae7
MD5 84031c5e3b2ecb9609f78a119b89a217
BLAKE2b-256 eae583bee6f72144295322e92f4af49e0d2f44a752e5870bfe83c8182db489ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-4.1.1.26-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a1f6499447c69ccfdb49dd084c4918ebd8c57dda06ae298dbe8b998fd45288c4
MD5 1f20d9866326dd3e40007eb89bbc5835
BLAKE2b-256 339b1f9ef069206002d0bbca80598193904ce1ae2a990e7465bc351b1264c7d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-4.1.1.26-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 10598030408098693ffeba561d5508f406cdb105a788f0a7e0a77b027039037f
MD5 c817e8b571e8c51b9f3cd436371779cf
BLAKE2b-256 c49c2e81135c49f2f3d0de260356c61d6a542c0c105421c9a0ce3d9d79207f39

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.1.1.26-cp36-cp36m-macosx_10_8_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-4.1.1.26-cp36-cp36m-macosx_10_8_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 91a2f973ab95e0a9b75e7011c5eabdf9f4da1e5d1be4d31f14bf3544ed51dfde
MD5 d4ce67f5e655bbc64d30829c2cbfb881
BLAKE2b-256 643664f7edd947fcd5feb6bc1df0f57b5132291ea7ed12864197e3df34f4431a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.1.1.26-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 45.3 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.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.5.4

File hashes

Hashes for opencv_contrib_python-4.1.1.26-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 9ee562990e68e91c3e9bbb4a74ca44921618292c68e8a838ebd4ed020d5b0333
MD5 6a61d31ba4e58d5f0a47b620c40e2c84
BLAKE2b-256 f3be8f9d9eaf4e5b77176e71961c4ec0673f7a96a7c208d7f6acce8d42b41ef6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.1.1.26-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 32.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.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.5.4

File hashes

Hashes for opencv_contrib_python-4.1.1.26-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 4e8fac588e667a89dbb8c7fe267a268272b9805623b3d9886c8a63480a3a8bfb
MD5 76b3c7898943cb0ade86da9ddfb459cc
BLAKE2b-256 b68948709e3a3326a50d09922d77e53860dc6f1ba4a0525252602bf812129736

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-4.1.1.26-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 55ee429bebdadcbca7fa7902869a397db16d401545d31c1776fc56011a196ce3
MD5 ac382d13d84165d6c614bc09130adcf9
BLAKE2b-256 825ef64260deb089a7d215b1f8b6674212b06419af4ee505cf930e8c4ab9e98f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-4.1.1.26-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 83596827c2f11405910a5391dcb15bbcaae3aa6f21403d76a80cdaa7a153d9d6
MD5 eb82e61d8e33cb12052cf662d1a639c1
BLAKE2b-256 559a99652baad21b1c92bbb9ef79f7f1d0a4007222f57ab2469e47da66a33b64

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.1.1.26-cp35-cp35m-macosx_10_8_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-4.1.1.26-cp35-cp35m-macosx_10_8_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 aa4cacbbc60c6a0302447a9553bb672aacf54e0eb5b6ec3cb0192a09669277f7
MD5 a82e217c7ad20dc63d912072293142dc
BLAKE2b-256 30d8c004d5f424acafa584c338c8add7eb783d2455743e3e776d2c213f014c89

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.1.1.26-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 45.3 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.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.4.4

File hashes

Hashes for opencv_contrib_python-4.1.1.26-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 0c190e6abbbe47b9fb4bccdedb3f2e3d6cb97294072f3639f42a7cb9f2694895
MD5 5245ef4a8ce1a7bff2d73b973451c863
BLAKE2b-256 8eb14dc23c77c974d1d32536a22de9e60e693d44dcf09636826bb15b02013aa6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.1.1.26-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 32.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.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.4.4

File hashes

Hashes for opencv_contrib_python-4.1.1.26-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 72b5259d55b17f04f3dfeca1b18f8d68b8fe23a511642939880492f2ecbf479e
MD5 41bee3c9c2caa55ef4f383c3fa4da92b
BLAKE2b-256 8f9e29f11035215bb7dda4887a4c04d275157baaf61e042bf58cef994b407ffa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-4.1.1.26-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cbd81312e725679f41c87f3a4e37358af977fec822b015d029cc1c9ef11091a3
MD5 1efbc3375520ef29778e1a77f50d0104
BLAKE2b-256 9c4dbf3958084be0712f66f53b4aa103e7abb8a79411d70dc9fe5d403ec0f6f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-4.1.1.26-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 345c3053292f356e9b8a1b857bf4ac927b603b0ad2e026c46d549fdaba7e0943
MD5 49d1ee4dc80bd07090f6ae905b0f7196
BLAKE2b-256 3416f8d8523cf0846d51200809b4b4c460e25b6cbfbf06e93acd4dbb8847dcfa

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.1.1.26-cp34-cp34m-macosx_10_8_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-4.1.1.26-cp34-cp34m-macosx_10_8_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 bba43cf21456ca45eaa89b1b463044234fe035ddb92e0bb00089fa4c881cc7d5
MD5 48db4f8a09e525553b45179dfacddca7
BLAKE2b-256 c03eb0c2c3835b110a1e36b3f88c2d526bdafead5de7ccfe4bfe1d2546297ec8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-4.1.1.26-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ed3d62b4f4b023dcdc5df486416e6403090c8009673216ee41d2a279cde96c21
MD5 ea0be9c37bdd74089019e310e61e68f1
BLAKE2b-256 dd576174715277132b99c3ff86b29eaeb199ef928a9e4c360df8f61efdc39a07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-4.1.1.26-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 560b6e4a961a83f742ca45a7d769771e03dbd7661995e2e83382295c826f1034
MD5 4b449c1d41ae8a271d430e029ea96756
BLAKE2b-256 15255ab0490b7c7397cbb401820d8c5bf95d8637284dc8da0ee04fec449e4d55

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.1.1.26-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 45.4 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.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/2.7.16

File hashes

Hashes for opencv_contrib_python-4.1.1.26-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 767c7193520c028fea33ca2b9aa72b6ccd5e67cb2a6f6fef9e910bb65321d835
MD5 d4cae19ef7b4ad0827b34ecb427651aa
BLAKE2b-256 b4794db0ae3fe1854750d603fb2cc338e1156f18489b88d9268ac21ed7f5c08e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.1.1.26-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 32.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.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/2.7.16

File hashes

Hashes for opencv_contrib_python-4.1.1.26-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 3e420739d3ee8b1273b9258f1ad58f515c5905d458542fdf82134f3b671418ed
MD5 28fe9fd86b8fa78a197a2685cf9efbd3
BLAKE2b-256 9414d7280390f937ac412906436f2e5acc9a777f5fc383e5bd7bb1a29a9fa8a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-4.1.1.26-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 412a70352faf35374b15af974079e65321af530a9d7a11919d5642345ccd9ea7
MD5 9ffa1b49f3649e627364bbae9e920197
BLAKE2b-256 0d3a0255e95cba4786fe2fc0e14bbaf19411944c7b28c48ffb004ad3137da8c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-4.1.1.26-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 688c48909b43347afd5d7e965e78af3c5a5d5d47056da80600348884dde79d2e
MD5 7b4e1eb2285b2097a6e34aaba7f73dc3
BLAKE2b-256 8dfe70685d1a9e03ad56abb9f956e18f6146e52358807f072fa0fa1d9dd9ec87

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.1.1.26-cp27-cp27m-macosx_10_8_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-4.1.1.26-cp27-cp27m-macosx_10_8_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 abe05935ccaa16670100656d9313ebe965c554b5ad719b0f139758b9fd9eec9a
MD5 61abff22479d91ddff093e63024ab486
BLAKE2b-256 dcb921c7def7bcc01bd3abc69463bad5242a17f625864d44620c13937c020918

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