Skip to main content

Wrapper package for OpenCV python bindings.

Reason this release was yanked:

Release deprecated

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 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.

Manual builds

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

  1. Clone this repository: git clone --recursive https://github.com/skvark/opencv-python.git
  2. Go to the root of the repository
  3. Add custom Cmake flags if needed, for example: export CMAKE_FLAGS="-DSOME_FLAG=ON -DSOME_OTHER_FLAG=OFF"
  4. Run python setup.py bdist_wheel
    • Optionally use the manylinux images as a build hosts if maximum portability is needed (and run auditwheel for the wheel after build)
  5. You'll have the wheel file in the dist folder and you can do with that whatever you wish

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 4.8.7 licensed under the LGPLv2.1.

Non-headless 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.

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
  • 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_python-3.4.10.35-cp38-cp38-win_amd64.whl (31.4 MB view details)

Uploaded CPython 3.8Windows x86-64

opencv_python-3.4.10.35-cp38-cp38-win32.whl (22.6 MB view details)

Uploaded CPython 3.8Windows x86

opencv_python-3.4.10.35-cp38-cp38-manylinux2014_i686.whl (37.4 MB view details)

Uploaded CPython 3.8

opencv_python-3.4.10.35-cp38-cp38-macosx_10_9_x86_64.whl (52.4 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

opencv_python-3.4.10.35-cp37-cp37m-win_amd64.whl (31.4 MB view details)

Uploaded CPython 3.7mWindows x86-64

opencv_python-3.4.10.35-cp37-cp37m-win32.whl (22.6 MB view details)

Uploaded CPython 3.7mWindows x86

opencv_python-3.4.10.35-cp37-cp37m-manylinux2014_i686.whl (37.4 MB view details)

Uploaded CPython 3.7m

opencv_python-3.4.10.35-cp37-cp37m-macosx_10_9_x86_64.whl (52.4 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

opencv_python-3.4.10.35-cp36-cp36m-win_amd64.whl (31.4 MB view details)

Uploaded CPython 3.6mWindows x86-64

opencv_python-3.4.10.35-cp36-cp36m-win32.whl (22.6 MB view details)

Uploaded CPython 3.6mWindows x86

opencv_python-3.4.10.35-cp36-cp36m-manylinux2014_i686.whl (37.4 MB view details)

Uploaded CPython 3.6m

opencv_python-3.4.10.35-cp36-cp36m-macosx_10_9_x86_64.whl (52.4 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

opencv_python-3.4.10.35-cp35-cp35m-win_amd64.whl (31.4 MB view details)

Uploaded CPython 3.5mWindows x86-64

opencv_python-3.4.10.35-cp35-cp35m-win32.whl (22.6 MB view details)

Uploaded CPython 3.5mWindows x86

opencv_python-3.4.10.35-cp35-cp35m-manylinux2014_i686.whl (37.4 MB view details)

Uploaded CPython 3.5m

File details

Details for the file opencv_python-3.4.10.35-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: opencv_python-3.4.10.35-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 31.4 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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.0

File hashes

Hashes for opencv_python-3.4.10.35-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 65de36da738f8b07e4997bf6bb63d7b5e4c60b0e48794616680b838102667141
MD5 920fed239fc7b4451e2d6e0f09d338f4
BLAKE2b-256 95a4de9db2111d5828b6e5acf9fea3b54d777f0e9ebd23950a0d8af44530d44e

See more details on using hashes here.

File details

Details for the file opencv_python-3.4.10.35-cp38-cp38-win32.whl.

File metadata

  • Download URL: opencv_python-3.4.10.35-cp38-cp38-win32.whl
  • Upload date:
  • Size: 22.6 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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.0

File hashes

Hashes for opencv_python-3.4.10.35-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8dbda333cdad2ff20324add060624839dbd732d17bc80c797aa3b33b44a95b86
MD5 88e9e78607436d58d9a6fee62c0beb1b
BLAKE2b-256 3688ed8c08a41dfc6658105a903b00f9d2cf0f753b0580c6eba8c7e9dfbe6ca4

See more details on using hashes here.

File details

Details for the file opencv_python-3.4.10.35-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: opencv_python-3.4.10.35-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 43.3 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/2.7.12

File hashes

Hashes for opencv_python-3.4.10.35-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be25d76d9a104c73a0bb934894e54f2cebf5fb7aa46925fafbe2ccfcc48297cc
MD5 65b7a79fb64e5814dde84a13bd93ac29
BLAKE2b-256 76fd8c79669d5c5100f7822204efe04606ea85a7f49597e7ab855c0a32397b3a

See more details on using hashes here.

File details

Details for the file opencv_python-3.4.10.35-cp38-cp38-manylinux2014_i686.whl.

File metadata

  • Download URL: opencv_python-3.4.10.35-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 37.4 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/2.7.12

File hashes

Hashes for opencv_python-3.4.10.35-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 364fc44069c4468132beb2a4f67623771b57081c80d49ed45a0ec200e32c0ab4
MD5 5dee6438f925d6c457a9726ec5babf74
BLAKE2b-256 35820cd685b2b7e53a4b5f9d4fb57792c2110b9468e07db260d457a0271350b2

See more details on using hashes here.

File details

Details for the file opencv_python-3.4.10.35-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: opencv_python-3.4.10.35-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 52.4 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.2

File hashes

Hashes for opencv_python-3.4.10.35-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9af069a87976a8a268eddc6183ef5c3c08ae1ea4733a94eeb7c96688113ff4c4
MD5 c786fc909ebebf59e5434689fbdcc241
BLAKE2b-256 2222cf4797d2d9939ad2aba3388948acd79efc74e3b491b70fefd8389b7f0901

See more details on using hashes here.

File details

Details for the file opencv_python-3.4.10.35-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: opencv_python-3.4.10.35-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 31.4 MB
  • Tags: CPython 3.7m, 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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.5

File hashes

Hashes for opencv_python-3.4.10.35-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 cbb826acfd2c0b97ef6f1475e4ae605ffb3d36b4dedfb6f5a3952053415a67c5
MD5 00f541070567b0d4236b2006d1aa0b4a
BLAKE2b-256 d5eb4d83982e136bc024520f39639532b44761e4b40b83d6eebc964a836ebfe1

See more details on using hashes here.

File details

Details for the file opencv_python-3.4.10.35-cp37-cp37m-win32.whl.

File metadata

  • Download URL: opencv_python-3.4.10.35-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 22.6 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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.5

File hashes

Hashes for opencv_python-3.4.10.35-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 1435369906a77bfa054ca04a5e3b341113d60749af50758d54bf0437483f2b44
MD5 e422e4b34886115d68e11cc5b545032e
BLAKE2b-256 ffa00641f8655ee98c8dd44791f1912a4a720a6a1f54ffacc3b7499a26af0f9c

See more details on using hashes here.

File details

Details for the file opencv_python-3.4.10.35-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: opencv_python-3.4.10.35-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 43.3 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/2.7.12

File hashes

Hashes for opencv_python-3.4.10.35-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5db982fd9abc1f889c418d790186f6fb78559d93ce52a62c094e9602e59dc77
MD5 4462ff7c715ca446209a6e4438075b2f
BLAKE2b-256 e9d0f855b4047f57b34801ba7ae2683650ff6a94b48c83572025f83113d0f53b

See more details on using hashes here.

File details

Details for the file opencv_python-3.4.10.35-cp37-cp37m-manylinux2014_i686.whl.

File metadata

  • Download URL: opencv_python-3.4.10.35-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 37.4 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/2.7.12

File hashes

Hashes for opencv_python-3.4.10.35-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8eab57563c3905c1e87357139f4f7074add0a12086afd1dcdfe5ba9a056950fe
MD5 9d4e6fba9898cd859d77654e540061f1
BLAKE2b-256 320142dff171d522e15bfafd7b87519de87dc1602a8d02fc6fc0d42c3baf5973

See more details on using hashes here.

File details

Details for the file opencv_python-3.4.10.35-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: opencv_python-3.4.10.35-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 52.4 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.7

File hashes

Hashes for opencv_python-3.4.10.35-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bd63ca2c6b92429a1d4b53f2c499e6639832272821a9f0d2be5fe5749dba7c91
MD5 9d786980c9cfb444a80e1e47c3c550ca
BLAKE2b-256 0257fd6f4b3557cc1cb30d852dc109f2e04adea9e38a1fa11883a233409c9520

See more details on using hashes here.

File details

Details for the file opencv_python-3.4.10.35-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: opencv_python-3.4.10.35-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 31.4 MB
  • Tags: CPython 3.6m, 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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.8

File hashes

Hashes for opencv_python-3.4.10.35-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 29c8dc038ea11456e2016c659ddd996ead3dc9626c998b03237e12aa73f48efb
MD5 3345a58de0eb01ec084a8499b5d2bb91
BLAKE2b-256 e8505af4ebaf463d4db51c23b2dc49be13627f3607b2f9dcfc15238916821014

See more details on using hashes here.

File details

Details for the file opencv_python-3.4.10.35-cp36-cp36m-win32.whl.

File metadata

  • Download URL: opencv_python-3.4.10.35-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 22.6 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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.8

File hashes

Hashes for opencv_python-3.4.10.35-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 a3c4751c5ba61a5447494ff2fe938b9af5159bfb1de2114f45e3c4b8f6535559
MD5 5836ea0819b8783a2faa6d5cd937af52
BLAKE2b-256 26d103afd70d82c9d29ab90ab6927061cd8b81aca686be0981f4197b86a5f88d

See more details on using hashes here.

File details

Details for the file opencv_python-3.4.10.35-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: opencv_python-3.4.10.35-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 43.3 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/2.7.12

File hashes

Hashes for opencv_python-3.4.10.35-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4c102ec1fc6df24d9e9f7f35d2ce03d265d14a6964a504ce431b42122ee22ec
MD5 3f5e51ee2d52601784844cf4ae0456d4
BLAKE2b-256 4cf61c276a88cc13e76f8209e2004a6b797c9a4b4f9781d70839330984bef78e

See more details on using hashes here.

File details

Details for the file opencv_python-3.4.10.35-cp36-cp36m-manylinux2014_i686.whl.

File metadata

  • Download URL: opencv_python-3.4.10.35-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 37.4 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/2.7.12

File hashes

Hashes for opencv_python-3.4.10.35-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f1cefce5017d30a3a51ff60cea05a418e39b554c3fae50b87f663ed709c860d2
MD5 f610dce2521d7d435683cb78ec8bca6c
BLAKE2b-256 e4e9e3ff1e8e863f45123e09b25e8ab19d3be67e215d9c7c9d45cbb1cafc6172

See more details on using hashes here.

File details

Details for the file opencv_python-3.4.10.35-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: opencv_python-3.4.10.35-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 52.4 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.8

File hashes

Hashes for opencv_python-3.4.10.35-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 25e68352bb569c95714d72b0bd8cfd10eef83dfc5ea2414b641d23c6d47d1b3b
MD5 1c1b20068504f1c6d00914cb4b643bb9
BLAKE2b-256 8d534ddfb1a2ee479004beead4569248a60c8ba448cd1bbd6e9569fa33fdefec

See more details on using hashes here.

File details

Details for the file opencv_python-3.4.10.35-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: opencv_python-3.4.10.35-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 31.4 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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.4

File hashes

Hashes for opencv_python-3.4.10.35-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 01dd22360518c1bd03031b6efc303301be28cb0b868c26f1a951dcc1072adfad
MD5 5b8fbf7d291691fc3e29e956b3b94516
BLAKE2b-256 1817378c8e2dee40e8162a4028c91bf94162d0659c3b0339c812031a7393e33a

See more details on using hashes here.

File details

Details for the file opencv_python-3.4.10.35-cp35-cp35m-win32.whl.

File metadata

  • Download URL: opencv_python-3.4.10.35-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 22.6 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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.4

File hashes

Hashes for opencv_python-3.4.10.35-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 49354947025828129d9aa4a01f67072046f92cbdd660253bf264f3f2a8042a10
MD5 438fbbcf2734b2c77b796a9a6bae72f2
BLAKE2b-256 a6903b4dab48ca79272c75a700ca1d21743337921745e99498f24799616c254e

See more details on using hashes here.

File details

Details for the file opencv_python-3.4.10.35-cp35-cp35m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: opencv_python-3.4.10.35-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 43.3 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/2.7.12

File hashes

Hashes for opencv_python-3.4.10.35-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 647b26abb3d33b36307baba57603ce66375785d0603a999f151de8ac2b5d2849
MD5 3eda1e9b80d53d289856f64f7dc80e42
BLAKE2b-256 12e9c4629949e1b7f6194ff1561fb3509d4448f329f295efe3ae433edcffd4c5

See more details on using hashes here.

File details

Details for the file opencv_python-3.4.10.35-cp35-cp35m-manylinux2014_i686.whl.

File metadata

  • Download URL: opencv_python-3.4.10.35-cp35-cp35m-manylinux2014_i686.whl
  • Upload date:
  • Size: 37.4 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/2.7.12

File hashes

Hashes for opencv_python-3.4.10.35-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d23b4eefc82dce6cbfafb66da281180ca5cf6507379a181add53ef1123c7a65a
MD5 b84902bcc0c3454f56511d028f34cb16
BLAKE2b-256 cd0ea69b083255f21f7b7c9b418ced773e1c2a8887a5c91a76f14db4134e2855

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