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

Uploaded CPython 3.7mWindows x86-64

opencv_contrib_python_headless-4.1.0.25-cp37-cp37m-win32.whl (30.9 MB view details)

Uploaded CPython 3.7mWindows x86

opencv_contrib_python_headless-4.1.0.25-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 (55.9 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.1.0.25-cp36-cp36m-win_amd64.whl (43.7 MB view details)

Uploaded CPython 3.6mWindows x86-64

opencv_contrib_python_headless-4.1.0.25-cp36-cp36m-win32.whl (30.9 MB view details)

Uploaded CPython 3.6mWindows x86

opencv_contrib_python_headless-4.1.0.25-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 (55.9 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.1.0.25-cp35-cp35m-win_amd64.whl (43.7 MB view details)

Uploaded CPython 3.5mWindows x86-64

opencv_contrib_python_headless-4.1.0.25-cp35-cp35m-win32.whl (30.9 MB view details)

Uploaded CPython 3.5mWindows x86

opencv_contrib_python_headless-4.1.0.25-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 (55.9 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.1.0.25-cp34-cp34m-win_amd64.whl (43.7 MB view details)

Uploaded CPython 3.4mWindows x86-64

opencv_contrib_python_headless-4.1.0.25-cp34-cp34m-win32.whl (30.9 MB view details)

Uploaded CPython 3.4mWindows x86

opencv_contrib_python_headless-4.1.0.25-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 (55.9 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.1.0.25-cp27-cp27m-win_amd64.whl (43.7 MB view details)

Uploaded CPython 2.7mWindows x86-64

opencv_contrib_python_headless-4.1.0.25-cp27-cp27m-win32.whl (30.9 MB view details)

Uploaded CPython 2.7mWindows x86

opencv_contrib_python_headless-4.1.0.25-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 (55.9 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.1.0.25-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: opencv_contrib_python_headless-4.1.0.25-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 43.7 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.1.0.25-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 efa2d49fd9430534c71f31c3a6110f5b18ea2195f7f2b69e3244f4e4eb821388
MD5 e12e1241d6d13111483376dfc3eceef1
BLAKE2b-256 4962e9fb25ffff1f438badfea6d2bb1dac78c673e25a54e8acbb1af54a11e9f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python_headless-4.1.0.25-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 30.9 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.1.0.25-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 802aacdb13eb2e0e670511bce3760c462970362137304546c56ca3a1105c626e
MD5 70a986f230ca1e8e606436dcbaece95d
BLAKE2b-256 3fed353876c202f77f94cfc051909daf7bfcadae7ab115c71638fb1a57139c7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.1.0.25-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 62ca879be3f4e68a16ebbc8be2300f64b025285be0b2c49ad4aff633644cc331
MD5 1e09604207cdd35c90fdab743fe105ea
BLAKE2b-256 43484bf1e963c19eeb997ee0a31f18ee25cc04892c95b6e4125ebb68de87e4b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.1.0.25-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9a300e80b275de7a636c70155c600a6fb44839a059a356353358107453f42e8c
MD5 651a843e2dcfebf73da7e606c5cf70c6
BLAKE2b-256 cc14615539714bf2dce0950fee4de429714c1b6c8cfc0469bf129ee1a6b00b40

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-4.1.0.25-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.1.0.25-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 5aeb858293934e859e80d3fa161a61990a194666e3eef5962fe5c811413eaebf
MD5 49175b349b930f88258f5af455131efe
BLAKE2b-256 ebcd6bf46816fe8f09fb00b73b4ba098775a65f3d1b5a57752a50b7d3e0874f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python_headless-4.1.0.25-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 43.7 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.1.0.25-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f28d809b87a75e6f45fddefca13c5070fbd8e23e1c63e5eab161f9763f92ca70
MD5 ee21b2c9cf598a8dcc2ba3f7c79d1adc
BLAKE2b-256 62025fee632cbab152f0a80d5207bf21a3c0420dda6d3e36b66031ec8d8b1550

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python_headless-4.1.0.25-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 30.9 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.1.0.25-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 2eb815bbe22025a9652a7a30368394dca70afce5037e29f8a9efac409ba01c16
MD5 853950c69e3e837f10b0c787e0923742
BLAKE2b-256 151f8833e2be56e46bc508576d6dbebfb7b562d7ee9ad9953e380e30d5dfdbf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.1.0.25-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f8383ef16004789635a666a68110c20d10713f21047f6993dd6af3c3fdb91b4f
MD5 d1da08a2ad88845aa84e7a87d2627ec1
BLAKE2b-256 70e364b8a17546550bf127a9bd3c544b76ae47c4e117bcd5db26235c590831f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.1.0.25-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 80c3bc0224d67fd789db6f912a37ddc18fc12d28ca775b7daeb50c9840c9b205
MD5 0a0a08466061e93db4b0a87957864371
BLAKE2b-256 c8ddc9eefc27f4d241ae7e015a5886db604539e4468a3090964eaff2ee624e9a

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-4.1.0.25-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.1.0.25-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 533a711313056a25a9c2491e0a701ffb71fc8f3391393ef4b769b85f50132099
MD5 8b37cc7008b16d0fab116f8591d9bb2f
BLAKE2b-256 22f7d9a078daf253c8ddf51c161cc3c7cf0100402edefd15115cf9c555c15e46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python_headless-4.1.0.25-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 43.7 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.1.0.25-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 fe17070b7de59d197be1ccf4a39f21f3e30414c193088352b9bdfe44e7a6a9ce
MD5 cc9a056114db200a759c37d17226555e
BLAKE2b-256 823f93d720d3e942cf2198aeb5c907f8c1c1c4052ae7021ce2dfb158e1bdb6c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python_headless-4.1.0.25-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 30.9 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.1.0.25-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 c8f0fe926b43965e4e2c4f9fbb94cb5f226ed92e9e85f00a94dfad42816cb389
MD5 2c925a71b81c94449c618812436c4b5b
BLAKE2b-256 df74ae0eef4197208770a7242002f4332281ed3f3642f693432296a980909da1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.1.0.25-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4fe7d51dab3018e305c4373ac66ca0701ace6e7b69eee7eac9aaed662e6e0300
MD5 775b44132c95de79f5fa7d82d8d020e7
BLAKE2b-256 6d25b63876403305122a3b733d26519cd513566498acd5dea01cf80df3bded4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.1.0.25-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 83079ef6d3ab76c8d9553525ef9378cb0c07bff31ff22b86ef0899560a9e15cd
MD5 93eb8daf64e56951da18b8a0146b1d14
BLAKE2b-256 9bcd68a4a4fa8bf88ce7b6368d7acb9bc6838be0dc24e5cebce2d818022a031a

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-4.1.0.25-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.1.0.25-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 a45e6b293d50045712a2c7d2214533ce2b1f857e4303440508c566a46c1261d3
MD5 3330d05260cb0c91fa0379ece4a96226
BLAKE2b-256 1b8ede84b3f988bec45bde99f6ba85078c6e934ff4ebd647b4a55119bc924d5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python_headless-4.1.0.25-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 43.7 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.1.0.25-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 c5163424c0bc0c6d9a952195f01f5f9176defc1fdecdc411ce0dbc1bdca0cd2c
MD5 9f0fafb19df1af8be87549cb52553977
BLAKE2b-256 56183f14a1e6bf40020c7004f9c26d81e9904314acbe3f152da682430622c0e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python_headless-4.1.0.25-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 30.9 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.1.0.25-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 665bfdd387bb8231791199a45f2d88d81927df0d3b57c5cd09702e91a1a5cd88
MD5 353781ce45ebd5c29e2defac1442be91
BLAKE2b-256 a4ea95a67643645d78d5a6181f99b76c309017aa40dd8bc910cd0b3901469110

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.1.0.25-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 03383f0adcf264ded23c6fe0b1498d341bdf8d119e622c4b0153483e9b490967
MD5 e610ee7fe61202fa6267d464255f5553
BLAKE2b-256 6c89ba3495a63f987ba0aa00c4d4dab3583cbe5dac5ab313c6a3ccc63129c7b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.1.0.25-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c15981be8ce7210cad4636bb1c55e1c0cd8017c6ce87d5c06e8fab9d4d206c15
MD5 19c62add04c3cc15013dc2360283631d
BLAKE2b-256 af2c17db56319c81c15eed940ed9a5d74fb5c23be3606ae982446948a3775672

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-4.1.0.25-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.1.0.25-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 434a931b87d2475a8213c37252893cf92155ee81dd196f42b920087e89896e30
MD5 cd65aa1fcd3e070bbf280a45698d303d
BLAKE2b-256 73e515a134f6d383466230cf7d76ef6bac319528eeeca013a8d0409f98c9aacf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.1.0.25-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d27fad451fb47c12f53ef63d97f2cf35f0f294420447241e0504c6b9e7bfb362
MD5 1aa9696fa1f32406db98be5fe560d21e
BLAKE2b-256 6a1c9df1f274197b4a131dff4c32863bed89ea2cc992a38af8f8cc621f784ad7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.1.0.25-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f67456343a905ad524bba30352a7d8d714fa8ecffb57c5f5cb019f80fca5eaff
MD5 c532efbb7e1310f87e23e14344a14a36
BLAKE2b-256 c22e24084f454aee90f1af65933ef5efa90bda386d775a89ca5ebc42a9115dac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python_headless-4.1.0.25-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 43.7 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.1.0.25-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 dd1a21552f4d4101e14064a5cd00fc34cb9e3622718102b21de7bbfa4e6bbc13
MD5 81ca4b4414568a44679dcb7d0f79ac04
BLAKE2b-256 e92fdae54ea7ac13dc6f8c10605a50d8a4b991fab771c99b10cf3a607f04e359

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python_headless-4.1.0.25-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 30.9 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.1.0.25-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 91e7e470bceb2b82726be000e3e10aafc99192d94d175d4992ccc6ce5fcfda7c
MD5 4f75ad795c81585d4f12917e683dba04
BLAKE2b-256 a1ef469940c58658242882d19c5232cb12b9c2dcad94a84774c7741e343facd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.1.0.25-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b23386fcf7aaed228e0fab691a4d881c9ba25f91171d61d35d769992741c3844
MD5 a9b14677de95ecb3f5ad160936a89065
BLAKE2b-256 465160fc5ad238fdc44c756a06b7a5cea9d008258618af05eb569b6ceac4e44b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.1.0.25-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7d23e70f59d19772857d79f454db61038b0faaa10fc19b55377172750901f19d
MD5 3c21d0868d44ee9bcef384bfdffdc05f
BLAKE2b-256 d488b5d8e9e183437bc1c958f0ff2d6a1d951d128f559fa886499177a4523717

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-4.1.0.25-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.1.0.25-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 bcff1fd3437ad758c30219b3006f0c01b96684ee02a7cdcc5f981ec8aae40d8f
MD5 49d9ab578a271a0ea3ec3c2c405cd8c3
BLAKE2b-256 21b7000d8b4feb868601831f1e864791fef295c0a86f537c64c2001e981a013a

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