Skip to main content

Wrapper package for OpenCV python bindings.

Project description

Downloads

OpenCV on Wheels

Pre-built CPU-only OpenCV packages for Python.

Check the manual build section if you wish to compile the bindings from source to enable additional modules such as CUDA.

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. Make sure that your pip version is up-to-date (19.3 is the minimum supported version): pip install --upgrade pip. Check version with pip -V. For example Linux distributions ship usually with very old pip versions which cause a lot of unexpected problems especially with the manylinux format.

  3. Select the correct package for your environment:

    There are four different packages (see options 1, 2, 3 and 4 below) 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)

    • Option 1 - Main modules package: pip install opencv-python
    • Option 2 - Full package (contains both main modules and contrib/extra modules): pip install opencv-contrib-python (check contrib/extra modules listing from OpenCV documentation)

    b. Packages for server (headless) environments (such as Docker, cloud environments etc.), no GUI library dependencies

    These packages are smaller than the two other packages above because they do not contain any GUI functionality (not compiled with Qt / other GUI components). This means that the packages avoid a heavy dependency chain to X11 libraries and you will have for example smaller Docker images as a result. You should always use these packages if you do not use cv2.imshow et al. or you are using some other package (such as PyQt) than OpenCV to create your GUI.

    • Option 3 - Headless main modules package: pip install opencv-python-headless
    • Option 4 - Headless full package (contains both main modules and contrib/extra modules): pip install opencv-contrib-python-headless (check contrib/extra modules listing from OpenCV documentation)
  4. Import the package:

    import cv2

    All packages contain Haar cascade 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")

  5. Read OpenCV documentation

  6. 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 install fails with ModuleNotFoundError: No module named 'skbuild'?

Since opencv-python version 4.3.0.*, manylinux1 wheels were replaced by manylinux2014 wheels. If your pip is too old, it will try to use the new source distribution introduced in 4.3.0.38 to manually build OpenCV because it does not know how to install manylinux2014 wheels. However, source build will also fail because of too old pip because it does not understand build dependencies in pyproject.toml. To use the new manylinux2014 pre-built wheels (or to build from source), your pip version must be >= 19.3. Please upgrade pip with pip install --upgrade pip.

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: Function foo() or method bar() returns wrong result, throws exception or crashes interpriter. What should I do?

A: The repository contains only OpenCV-Python package build scripts, but not OpenCV itself. Python bindings for OpenCV are developed in official OpenCV repository and it's the best place to report issues. Also please check {OpenCV wiki](https://github.com/opencv/opencv/wiki) and the fficial OpenCV forum before file new bugs.

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/opencv/opencv-python.git
  2. cd opencv-python
    • you can use git to checkout some other version of OpenCV in the opencv and opencv_contrib submodules if needed
  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 package flavor 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 version, the pip wheel command replaces the old python setup.py bdist_wheel command which does not support pyproject.toml.
    • this might take anything from 5 minutes to over 2 hours depending on your hardware
  6. You'll have the wheel file in the dist folder and you can do with that whatever you wish
    • Optional: on Linux use some of 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) for better portability

Manual debug builds

In order to build opencv-python in an unoptimized debug build, you need to side-step the normal process a bit.

  1. Install the packages scikit-build and numpy via pip.
  2. Run the command python setup.py bdist_wheel --build-type=Debug.
  3. Install the generated wheel file in the dist/ folder with pip install dist/wheelname.whl.

If you would like the build produce all compiler commands, then the following combination of flags and environment variables has been tested to work on Linux:

export CMAKE_ARGS='-DCMAKE_VERBOSE_MAKEFILE=ON'
export VERBOSE=1

python3 setup.py bdist_wheel --build-type=Debug

See this issue for more discussion: https://github.com/opencv/opencv-python/issues/424

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. If you need a OpenCV version which is not available in PyPI as a source distribution, please follow the manual build guidance above instead of this one.

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.

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 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 manylinux2014. 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 manylinux2014 images have been extended with some OpenCV dependencies. See Docker folder for more info.

Supported Python versions

Python 3.x compatible pre-built wheels are provided for the officially supported Python versions (not in EOL):

  • 3.6
  • 3.7
  • 3.8
  • 3.9

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.

Project details


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 Distribution

opencv-python-headless-3.4.15.55.tar.gz (87.7 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

opencv_python_headless-3.4.15.55-cp39-cp39-win_amd64.whl (31.1 MB view details)

Uploaded CPython 3.9Windows x86-64

opencv_python_headless-3.4.15.55-cp39-cp39-win32.whl (22.8 MB view details)

Uploaded CPython 3.9Windows x86

opencv_python_headless-3.4.15.55-cp39-cp39-macosx_11_0_arm64.whl (9.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

opencv_python_headless-3.4.15.55-cp39-cp39-macosx_10_15_x86_64.whl (40.8 MB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

opencv_python_headless-3.4.15.55-cp38-cp38-win_amd64.whl (31.1 MB view details)

Uploaded CPython 3.8Windows x86-64

opencv_python_headless-3.4.15.55-cp38-cp38-win32.whl (22.8 MB view details)

Uploaded CPython 3.8Windows x86

opencv_python_headless-3.4.15.55-cp38-cp38-macosx_11_0_arm64.whl (9.0 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

opencv_python_headless-3.4.15.55-cp38-cp38-macosx_10_15_x86_64.whl (40.8 MB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

opencv_python_headless-3.4.15.55-cp37-cp37m-win_amd64.whl (31.1 MB view details)

Uploaded CPython 3.7mWindows x86-64

opencv_python_headless-3.4.15.55-cp37-cp37m-win32.whl (22.8 MB view details)

Uploaded CPython 3.7mWindows x86

opencv_python_headless-3.4.15.55-cp37-cp37m-macosx_11_0_arm64.whl (9.0 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ ARM64

opencv_python_headless-3.4.15.55-cp37-cp37m-macosx_10_15_x86_64.whl (40.8 MB view details)

Uploaded CPython 3.7mmacOS 10.15+ x86-64

opencv_python_headless-3.4.15.55-cp36-cp36m-win_amd64.whl (31.1 MB view details)

Uploaded CPython 3.6mWindows x86-64

opencv_python_headless-3.4.15.55-cp36-cp36m-win32.whl (22.8 MB view details)

Uploaded CPython 3.6mWindows x86

opencv_python_headless-3.4.15.55-cp36-cp36m-macosx_10_15_x86_64.whl (40.8 MB view details)

Uploaded CPython 3.6mmacOS 10.15+ x86-64

File details

Details for the file opencv-python-headless-3.4.15.55.tar.gz.

File metadata

  • Download URL: opencv-python-headless-3.4.15.55.tar.gz
  • Upload date:
  • Size: 87.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.5

File hashes

Hashes for opencv-python-headless-3.4.15.55.tar.gz
Algorithm Hash digest
SHA256 b5e98739d7771fbf2e4e0d8df6b5a8950ebf02d45c7f69970311cbd18b841f2c
MD5 514c3d5047c2f02e9cc86efd39d47b6b
BLAKE2b-256 22595d2efc2c0eb71abab6cca82443b63f33b18fc6cd802ba64498afef656a0b

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.15.55-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: opencv_python_headless-3.4.15.55-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 31.1 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.5

File hashes

Hashes for opencv_python_headless-3.4.15.55-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b751a76f5cec96d038d83b737e73ff0813ff875d1ae2011f374da011cc1a8e36
MD5 8dda8bdb824ad0e4760aba8d1fd72439
BLAKE2b-256 02725d67d0a1bc0e191ec8551902a97612a415648ecccfc4916a879e0c0488c1

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.15.55-cp39-cp39-win32.whl.

File metadata

  • Download URL: opencv_python_headless-3.4.15.55-cp39-cp39-win32.whl
  • Upload date:
  • Size: 22.8 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.5

File hashes

Hashes for opencv_python_headless-3.4.15.55-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7f411a673ef5e926ceb50e1184221a0355d31f1fe3d034093fa2bbf575ade432
MD5 d279fbe5047dbea70ab726bcca8c0b10
BLAKE2b-256 545c00bb2a1d5f75d24299d55060f0a36cc718a8f8e10c82501e8b997e90929d

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.15.55-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opencv_python_headless-3.4.15.55-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c25e5e3b025a5afe2b7cbaddc3d0ec8e4623d0022d42c3bfa24e7e247183d98
MD5 22efcf25ddbc78d1e429fd4b03117013
BLAKE2b-256 d07dc3fde41603d1257545cf7b1c4b07e1a3da6227d6fe1991008ae148a37ec2

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.15.55-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opencv_python_headless-3.4.15.55-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 025a902882fa666251f9808b9040d30571b2a57d96efa64e3a04c7e712297c05
MD5 6335946b5cb902b5338e3f39de60ac1b
BLAKE2b-256 1a80f54b415ca890cdd708d84e894342eeafc6857e1232b064a15f0f94c604e0

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.15.55-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: opencv_python_headless-3.4.15.55-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 9.0 MB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.5

File hashes

Hashes for opencv_python_headless-3.4.15.55-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bbe916b76b59aa92851880e1e554b73bc95e437da143db3043ce3438690bd3e8
MD5 421b354f5c8a3f9e5fe034cbcc285a50
BLAKE2b-256 884756d8167926ca6e6df4121d3f3d88b404e0fd05b9e6061db461275cf4a208

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.15.55-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for opencv_python_headless-3.4.15.55-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e958ab8d0041aeae19574e8fac17c32ed93cb9aef04576ec4e9affb7dc9d045e
MD5 a083420085870d971cbe7875e6e5fc1d
BLAKE2b-256 e03434f557e0f9969f056868535d97579e22308e480e73d27613cee299ea93ef

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.15.55-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: opencv_python_headless-3.4.15.55-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 31.1 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.5

File hashes

Hashes for opencv_python_headless-3.4.15.55-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fea216b7e0fd5583556bafd5a69d9b3d6363736d2cd507b9925e1f0444546930
MD5 944868c501c1cc111a39f494e9803066
BLAKE2b-256 fa3c7241b872ff9fd45952af2401eb147bddef959bec3db8b038ab88f880de5a

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.15.55-cp38-cp38-win32.whl.

File metadata

  • Download URL: opencv_python_headless-3.4.15.55-cp38-cp38-win32.whl
  • Upload date:
  • Size: 22.8 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.5

File hashes

Hashes for opencv_python_headless-3.4.15.55-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b46aced9015b33f296893b5d126827ba2b829b01f5cb589889985ba5a1a7cb4b
MD5 74aa599a731369b5c46ff31f15279005
BLAKE2b-256 b8f0183ae4be73f1f1c92a4e6af8ebe9e26b4e6ee7a81670d7c9f7692fe2d532

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.15.55-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opencv_python_headless-3.4.15.55-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81073a0ae0c396d4fcf8d5b53a1f9477c84976a14d8c294a49951e172349f963
MD5 9cb06fc4179a4a29c2c5dbc8f3dc7ca2
BLAKE2b-256 d9e036775c02879d7cb9a9e66637181dd5567ae74fe9cac67d5bb7c42138b403

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.15.55-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opencv_python_headless-3.4.15.55-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa105037e50f9c9101d744d94341c3af1d9d815262fb6a14b1e8f2d0f603d475
MD5 7d395c96b0f43e20e04281c30a65a02f
BLAKE2b-256 ae0f9f2d70ec0b85cc754b8a6a30cf86201f4f310369cc81fcd37d7317d8954f

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.15.55-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: opencv_python_headless-3.4.15.55-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 9.0 MB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.5

File hashes

Hashes for opencv_python_headless-3.4.15.55-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e0a51bad2774a39ea8e384ff617e59eaa63549dea66c5c5d35cf76d14da785f
MD5 906fe1254550f7e40f43459e1327f694
BLAKE2b-256 51e657f1dcf1c70e62d70c2c9fc7c70bb2c2fd2aa155b38ca4f5fb7b8aca1f28

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.15.55-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for opencv_python_headless-3.4.15.55-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cfe8daa05770725f6a09722ee70483086bdf1f2f57fe54083d9de84a0b8bbf79
MD5 be6ae80de745e50d1561747d376fee57
BLAKE2b-256 c8f6dd9b99438f066ae009fdbca7267816c67a7ba2ddaa3aad137aeaa100df98

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.15.55-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: opencv_python_headless-3.4.15.55-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 31.1 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.5

File hashes

Hashes for opencv_python_headless-3.4.15.55-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 779accbc171ee04565d09793fc202a3c69afa4188c6c285bea503be67a1f02be
MD5 cb84c07ba3eeb51a668f9d464329b0c1
BLAKE2b-256 a16819086555d2f36318d06b747e519bf4a5acb724acf6e94001d5f2c4d792ee

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.15.55-cp37-cp37m-win32.whl.

File metadata

  • Download URL: opencv_python_headless-3.4.15.55-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 22.8 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.5

File hashes

Hashes for opencv_python_headless-3.4.15.55-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f639be5594b4c72c475afde4a9b718c12acc5b558fb0bf343c5023cc502bb673
MD5 8a65eddd90c0fa8a35cee1fcdbd7b650
BLAKE2b-256 1dcff64299b2e59211484b1df52f37fafb737895ae5f2553f1a961ad75276866

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.15.55-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opencv_python_headless-3.4.15.55-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 049b2e3fe2acbfa447557aa9580335b82f8b85f9993a0c52e9d2fcfc2e70880b
MD5 daae375c999ec0e9b4648daed392abda
BLAKE2b-256 7104625624b1181715f804aa66c9626b9be2acdd9c97af170addea113e3ebe6e

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.15.55-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opencv_python_headless-3.4.15.55-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dfc51b393498e79fe42a853d12324ad1caf42cf09f363b5a010789cb627eb147
MD5 de871425e460e8a6d8f5d9297746e1d5
BLAKE2b-256 a96d997d72c9ebe33eb1e32d040b22e41d66ec85ae43331b9d771cc66e4993b9

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.15.55-cp37-cp37m-macosx_11_0_arm64.whl.

File metadata

  • Download URL: opencv_python_headless-3.4.15.55-cp37-cp37m-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 9.0 MB
  • Tags: CPython 3.7m, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.5

File hashes

Hashes for opencv_python_headless-3.4.15.55-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 201312d08b4435a776543bb94bea52b2f115792420e5210d2241033ea34c8600
MD5 1bd99ba42f9229509a9a8172e499ba8b
BLAKE2b-256 18c7f59b188a3ac337fea49aff0d459ab342e1d18898e21b661b8423e6074572

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.15.55-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for opencv_python_headless-3.4.15.55-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 799a848f0f59f85b14db207f4237d6a3c8acfb258ce89322aee8eadb8f50b429
MD5 6ff3359fa24f5b51d9b76a12a36c3f45
BLAKE2b-256 c20b7c1aa3a16562af5f21cff8ab9bfca79bd03f62b5006917801690f3141e08

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.15.55-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: opencv_python_headless-3.4.15.55-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 31.1 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.5

File hashes

Hashes for opencv_python_headless-3.4.15.55-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 70d29a44b7799d87f85ed12e2d93c316abc163c55f55c228bb0b3e305457e2ff
MD5 f09ddffc610bc670abb9cbfbabe45d73
BLAKE2b-256 6066a49f2c3ec0c81ff30940057a50b322c6823d5dd5d108a619161242e03d3d

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.15.55-cp36-cp36m-win32.whl.

File metadata

  • Download URL: opencv_python_headless-3.4.15.55-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 22.8 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.5

File hashes

Hashes for opencv_python_headless-3.4.15.55-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 25cd90c3c46a08192c1a06354f41af85dfad9e2bed6d730d319045deee19e1fc
MD5 159b2d9204a91e3a58997b384bcfe392
BLAKE2b-256 9ce94bb11395a537b4884a05b91c0644d5907bee3f0bd96a050097ff423e911b

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.15.55-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opencv_python_headless-3.4.15.55-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35d791f88074163d40342a4277f14093ff03e0aab6a77207f522db17036d939b
MD5 8ef7f70b547ebd78dbb41dc7e458d7ae
BLAKE2b-256 1c078a3e0549e152a02df4d761899b3943a6d21a3146199b878159e130fe771c

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.15.55-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opencv_python_headless-3.4.15.55-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f97b9bd4b137b2b044a28f882c6bf1f20793c916dccfb036a61ebc398d291842
MD5 41d25098f36edf77e2acde88eb0e06a0
BLAKE2b-256 37532e5735fba10209add3502aa08c8306ed52a22cc51f158e6ca6570a515ac0

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.15.55-cp36-cp36m-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for opencv_python_headless-3.4.15.55-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a17db4bd9dba5de0f99ae05d8e2da9ad72eb94fb7bcd24003861178ed4add508
MD5 41e825d1ff0ff83e175a1e7d7d68251f
BLAKE2b-256 e6f57d7887bf11c9ca5ecdb6628165ca06fc32f0a8ce6ae655594ab78a0334be

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