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 you have Windows Server 2012+, media DLLs are probably missing too; please install the Feature called "Media Foundation" in the Server Manager. Beware, some posts advise to install "Windows Server Essentials Media Pack", but this one requires the "Windows Server Essentials Experience" role, and this role will deeply affect your Windows Server configuration (by enforcing active directory integration etc.); so just installing the "Media Foundation" should be a safer choice.

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 SURF are not included in these packages because they are patented / non-free and therefore cannot be distributed as built binaries. Note that SIFT is included in the builds due to patent expiration since OpenCV versions 4.3.0 and 3.4.10. 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 macOS)

The aim of this repository is to provide means to package each new OpenCV release for the most used Python versions and platforms.

CI 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. 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)
    • source distributions are separate entries in the build matrix
  5. Rearrange OpenCV's build result, add our custom files and generate wheel

  6. Linux and macOS wheels are transformed with auditwheel and delocate, correspondingly

  7. Install the generated wheel

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

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

Steps 1--4 are handled by pip wheel.

The build can be customized with environment variables. In addition to any variables that OpenCV's build accepts, we recognize:

  • CI_BUILD. Set to 1 to emulate the CI environment build behaviour. Used only in CI builds to force certain build flags on in setup.py. Do not use this unless you know what you are doing.
  • ENABLE_CONTRIB and ENABLE_HEADLESS. Set to 1 to build the contrib and/or headless version
  • ENABLE_JAVA, Set to 1 to enable the Java client build. This is disabled by default.
  • CMAKE_ARGS. Additional arguments for OpenCV's CMake invocation. You can use this to make a custom build.

See the next section for more info about manual builds outside the CI environment.

Manual builds

If some dependency is not enabled in the pre-built wheels, you can also run the build locally to create a custom wheel.

  1. Clone this repository: git clone --recursive https://github.com/skvark/opencv-python.git
  2. cd opencv-python
  3. Add custom Cmake flags if needed, for example: export CMAKE_ARGS="-DSOME_FLAG=ON -DSOME_OTHER_FLAG=OFF" (in Windows you need to set environment variables differently depending on Command Line or PowerShell)
  4. Select the version which you wish to build with ENABLE_CONTRIB and ENABLE_HEADLESS: i.e. export ENABLE_CONTRIB=1 if you wish to build opencv-contrib-python
  5. Run pip wheel . --verbose. NOTE: make sure you have the latest pip, the pip wheel command replaces the old python setup.py bdist_wheel command which does not support pyproject.toml.
    • Optional: on Linux use the manylinux images as a build hosts if maximum portability is needed and run auditwheel for the wheel after build
    • Optional: on macOS use delocate (same as auditwheel but for macOS)
  6. You'll have the wheel file in the dist folder and you can do with that whatever you wish

Source distributions

Since OpenCV version 4.3.0, also source distributions are provided in PyPI. This means that if your system is not compatible with any of the wheels in PyPI, pip will attempt to build OpenCV from sources.

You can also force pip to build the wheels from the source distribution. Some examples:

  • pip install --no-binary opencv-python opencv-python
  • pip install --no-binary :all: opencv-python

If you need contrib modules or headless version, just change the package name (step 4 in the previous section is not needed). However, any additional CMake flags can be provided via environment variables as described in step 3 of the manual build section. If none are provided, OpenCV's CMake scripts will attempt to find and enable any suitable dependencies. Headless distributions have hard coded CMake flags which disable all possible GUI dependencies.

Please note that build tools and numpy are required for the build to succeed. On slow systems such as Raspberry Pi the full build may take several hours. On a 8-core Ryzen 7 3700X the build takes about 6 minutes.

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.

Non-headless Linux and MacOS wheels ship with Qt 5 licensed under the LGPLv3.

The packages include also other binaries. Full list of licenses can be found from LICENSE-3RD-PARTY.txt.

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. It saves the version information to version.py file under cv2 in addition to some other flags.

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

The master branch follows OpenCV master branch releases. 3.4 branch follows OpenCV 3.4 bugfix releases.

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 3.x releases are provided for officially supported versions (not in EOL).

Currently, builds for following Python versions are provided:

  • 3.5 (EOL in 2020-09-13, builds for 3.5 will not be provided after this)
  • 3.6
  • 3.7
  • 3.8

Backward compatibility

Starting from 4.2.0 and 3.4.9 builds the macOS Travis build environment was updated to XCode 9.4. The change effectively dropped support for older than 10.13 macOS versions.

Starting from 4.3.0 and 3.4.10 builds the Linux build environment was updated from manylinux1 to manylinux2014. This dropped support for old Linux distributions.

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.3.0.38-cp38-cp38-win_amd64.whl (39.9 MB view details)

Uploaded CPython 3.8Windows x86-64

opencv_contrib_python_headless-4.3.0.38-cp38-cp38-win32.whl (29.8 MB view details)

Uploaded CPython 3.8Windows x86

opencv_contrib_python_headless-4.3.0.38-cp38-cp38-macosx_10_13_x86_64.whl (54.8 MB view details)

Uploaded CPython 3.8macOS 10.13+ x86-64

opencv_contrib_python_headless-4.3.0.38-cp37-cp37m-win_amd64.whl (39.9 MB view details)

Uploaded CPython 3.7mWindows x86-64

opencv_contrib_python_headless-4.3.0.38-cp37-cp37m-win32.whl (29.8 MB view details)

Uploaded CPython 3.7mWindows x86

opencv_contrib_python_headless-4.3.0.38-cp37-cp37m-macosx_10_13_x86_64.whl (54.8 MB view details)

Uploaded CPython 3.7mmacOS 10.13+ x86-64

opencv_contrib_python_headless-4.3.0.38-cp36-cp36m-win_amd64.whl (39.9 MB view details)

Uploaded CPython 3.6mWindows x86-64

opencv_contrib_python_headless-4.3.0.38-cp36-cp36m-win32.whl (29.8 MB view details)

Uploaded CPython 3.6mWindows x86

opencv_contrib_python_headless-4.3.0.38-cp36-cp36m-macosx_10_13_x86_64.whl (54.8 MB view details)

Uploaded CPython 3.6mmacOS 10.13+ x86-64

opencv_contrib_python_headless-4.3.0.38-cp35-cp35m-win_amd64.whl (39.9 MB view details)

Uploaded CPython 3.5mWindows x86-64

opencv_contrib_python_headless-4.3.0.38-cp35-cp35m-win32.whl (29.8 MB view details)

Uploaded CPython 3.5mWindows x86

opencv_contrib_python_headless-4.3.0.38-cp35-cp35m-macosx_10_13_x86_64.whl (54.8 MB view details)

Uploaded CPython 3.5mmacOS 10.13+ x86-64

File details

Details for the file opencv_contrib_python_headless-4.3.0.38-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: opencv_contrib_python_headless-4.3.0.38-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 39.9 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for opencv_contrib_python_headless-4.3.0.38-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6276276b5dc7a74029cc395187ff8c409a0147cd01b23c644a7bf6a679d2ddfa
MD5 cafe3f1f33715fb5e06585c27f5530dc
BLAKE2b-256 a4ce380c55123a7cdfc40e08a08ec69717f0a8549e58ab601955dae279f2f26f

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-4.3.0.38-cp38-cp38-win32.whl.

File metadata

  • Download URL: opencv_contrib_python_headless-4.3.0.38-cp38-cp38-win32.whl
  • Upload date:
  • Size: 29.8 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for opencv_contrib_python_headless-4.3.0.38-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9a7bca7efb8662afbb822870cfe21df6013a911b89efe6e8e87ab1961bd2171e
MD5 86bf8bb6c2f7afe12fa5f6408a56dca6
BLAKE2b-256 5cbe24231cc215a7d74af1c724e3f803cbfa16bf5a2998ed71ddbec8bc7bead0

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-4.3.0.38-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.3.0.38-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1bc864ed92dc3b54281dacca56f2c48af118a6891da515a44e6e6f5bad6c3e7
MD5 bb21833cba08f3554467a9414bc03531
BLAKE2b-256 7bd3264a09ee3dcc7dcada4a7e89ef6fde6dd1b72a6b509c3262e1f2d5e1538d

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-4.3.0.38-cp38-cp38-manylinux2014_i686.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.3.0.38-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6699abe670d8d17708add449316964e4f1dc0b29fd8e7632307fdc45dc92a785
MD5 45370b9826f98acfd468ed4dc62f9b62
BLAKE2b-256 0dbf7e60fcf645a79ed75d4aed19638e5968014d94930bb6fac62a8a42701c2d

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-4.3.0.38-cp38-cp38-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.3.0.38-cp38-cp38-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 27d4d8fdc50dc62864351881ce330fe80fb3e6fa02437c0c76a43b62b2914a65
MD5 11bcdd299e3b8310f30e6ba463608e15
BLAKE2b-256 cfc3134483dfd8d9f5e3cd34b7ba937934684ff5e0dcfec20e3521d7b7fb86c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.3.0.38-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d20081d30fce72e40028cf2fdf1e10bb0eaf02df201ee39c0db4cb8ac1fe8045
MD5 e39c6cb659c953381a4e75b6f0e06984
BLAKE2b-256 be9750a8f2acfc94dcfac11328af040397fb80e56d1ed832c2913dbb31ecbf71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python_headless-4.3.0.38-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 29.8 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.5

File hashes

Hashes for opencv_contrib_python_headless-4.3.0.38-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 57f7c1ad14d400c74b61e84d0b27209e94e2878e8cf37238900806a5c605ace7
MD5 68f8e7c65163ebde011a43925541397e
BLAKE2b-256 057f67f161ff59a287da6b9380e3a4e6cb9b456e47e84e13b70fe474c0c81c44

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-4.3.0.38-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.3.0.38-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31516115f36c753d6502ef89205a8b2a42b6abf184bd47374a1adf6e3e86875d
MD5 ccdab9470d89aaa7bcd9e99e9221a9c0
BLAKE2b-256 11f436339129093875ba3047e6372a7737a15be1112cae46b235009b8dc69c90

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-4.3.0.38-cp37-cp37m-manylinux2014_i686.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.3.0.38-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5fd0fa2b3a413385efcd1eb370100899b103b65ae7a5941c763c58541be7c014
MD5 77c013faaa191d8ce0c8df333c9cac20
BLAKE2b-256 1fb924bdb091c5df70a843d745185dcdc84ba6ce09200797b42f59157d6b00b2

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-4.3.0.38-cp37-cp37m-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.3.0.38-cp37-cp37m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0f45c61f1750805e521cfa4948bf682a53aeaf268bf56f8d57bc85c77c6275c6
MD5 e74bee121508251772b637e24b325b0e
BLAKE2b-256 5642522772b63e48250dd9e7e9aa9046a99b2a789e409b0e3a448e43f3681602

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.3.0.38-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 466ae27dba62cb3d514e95f4355addbe6336c520dec411cdf433acb0d5c75cb1
MD5 4bd64114a2ca3d4eaeb8a0c1d22ee891
BLAKE2b-256 c76997acf8ea1e325a244b076acf466891798482d4c3d0bee1abf846bcd6218d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python_headless-4.3.0.38-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 29.8 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.8

File hashes

Hashes for opencv_contrib_python_headless-4.3.0.38-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 bc4e50a15d7b30c8c908dd7f738e32bbcf85a0b12a2c09f01d5863fb7a2ec056
MD5 dcd0a56299ba183fc9d78515b1aa1143
BLAKE2b-256 c44bee7ffcae9270ce0d3ac68755986803dde8ae688fce47789817d46e542218

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-4.3.0.38-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.3.0.38-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88ab5d7437cd1b20773ba3278ec32ef9495083ea98f9c9ae5161c3af27d42652
MD5 2011da227b0b20301fdf10f7a8a1f959
BLAKE2b-256 fa2d84d5d6926ff1def7ed7889621d1b96374db3b0417a95a2bb85cad9286389

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-4.3.0.38-cp36-cp36m-manylinux2014_i686.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.3.0.38-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6c5363ba760652b05edd2a4da6c6341190e020e626fc4675b1a9bbe960e9aa17
MD5 cf554d6e9e42f20e6da56fd9234d2736
BLAKE2b-256 a760cbd5ceb70371c3b114f7a45e532cd326de670280b350f2a722ac1dce61f0

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-4.3.0.38-cp36-cp36m-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.3.0.38-cp36-cp36m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8c870f34657fe6ebe533b00a4314d89990ece24e0779d31525d9916f9b286f7d
MD5 834a58a9c3a609f2914210c711e7ce50
BLAKE2b-256 f04233e04a7e09e809168bedfaa22d4718204345e20cbded223718f49a569976

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python_headless-4.3.0.38-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 39.9 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.4

File hashes

Hashes for opencv_contrib_python_headless-4.3.0.38-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 046af268932b0f75c178926d5955535d520c7cb946f2a80bef099a7f78476006
MD5 722e9cc9babc8fc53bea28964bd8b568
BLAKE2b-256 26ba8e656c22c6b4028ad4105398efbc876a9210f424df998b0d88abd1e39c69

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python_headless-4.3.0.38-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 29.8 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.4

File hashes

Hashes for opencv_contrib_python_headless-4.3.0.38-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 aa170525b7a89bc7b7622075a789480e749dc103402468a1a58c25afe99cfe3b
MD5 d165fcd4f3ad49ed5dc62c0f1f9b4099
BLAKE2b-256 9e4b84300ffb7c92d631ae0f477e0d65f89a15826db9c6193f0b2d079ce58a30

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-4.3.0.38-cp35-cp35m-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.3.0.38-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 30ea35b4d427061ff6ef93297dad9a3c7593f213093e50b31f876fe034a0e0aa
MD5 e10fa06b72d36c053af30944141f7548
BLAKE2b-256 1deb08d48153fc58bd63af987fdb990073855255f4224abb01566a9df969e40a

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-4.3.0.38-cp35-cp35m-manylinux2014_i686.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.3.0.38-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0519ccfdfb0686d1bd63253dfd65c106f71ac46919683502b989d4d479a0e6d1
MD5 5e45fe060cc3f1fec6f2bfd1636b9369
BLAKE2b-256 e6cf03e1797c7f17f42ba057092e7e9ed27bcfd23ae25034ba9a87b773a432b4

See more details on using hashes here.

File details

Details for the file opencv_contrib_python_headless-4.3.0.38-cp35-cp35m-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python_headless-4.3.0.38-cp35-cp35m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c40cb60cb3151e4af5fe2347b0a8ae6359d99e43825849aafcc363acc77ad0b2
MD5 cfe19125ae9350888cce8a06f68ca43b
BLAKE2b-256 9cdac6ecf05cb4f6a5b205b8c9e4bec3fa00df1c676632fe63921c43dbf2e718

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