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

    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 PyPI does not currently support ARM architecture so you can't install these packages for example on Raspberry Pi.

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.

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.

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

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 3.x releases follow Numpy releases. For example Python 3.3 is no longer supported by Numpy so support for it has been dropped in opencv-python, too.

Currently, builds for following Python versions are provided:

  • 2.7
  • 3.4
  • 3.5
  • 3.6
  • 3.7

Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

opencv_contrib_python-3.4.2.17-cp37-cp37m-win_amd64.whl (39.6 MB view details)

Uploaded CPython 3.7mWindows x86-64

opencv_contrib_python-3.4.2.17-cp37-cp37m-win32.whl (28.0 MB view details)

Uploaded CPython 3.7mWindows x86

opencv_contrib_python-3.4.2.17-cp37-cp37m-macosx_10_6_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (47.9 MB view details)

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

opencv_contrib_python-3.4.2.17-cp36-cp36m-win_amd64.whl (39.6 MB view details)

Uploaded CPython 3.6mWindows x86-64

opencv_contrib_python-3.4.2.17-cp36-cp36m-win32.whl (28.0 MB view details)

Uploaded CPython 3.6mWindows x86

opencv_contrib_python-3.4.2.17-cp36-cp36m-macosx_10_6_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (47.9 MB view details)

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

opencv_contrib_python-3.4.2.17-cp35-cp35m-win_amd64.whl (39.6 MB view details)

Uploaded CPython 3.5mWindows x86-64

opencv_contrib_python-3.4.2.17-cp35-cp35m-win32.whl (28.0 MB view details)

Uploaded CPython 3.5mWindows x86

opencv_contrib_python-3.4.2.17-cp35-cp35m-macosx_10_6_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (47.9 MB view details)

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

opencv_contrib_python-3.4.2.17-cp34-cp34m-win_amd64.whl (39.6 MB view details)

Uploaded CPython 3.4mWindows x86-64

opencv_contrib_python-3.4.2.17-cp34-cp34m-win32.whl (28.0 MB view details)

Uploaded CPython 3.4mWindows x86

opencv_contrib_python-3.4.2.17-cp34-cp34m-macosx_10_6_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (47.9 MB view details)

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

opencv_contrib_python-3.4.2.17-cp27-cp27m-win_amd64.whl (39.6 MB view details)

Uploaded CPython 2.7mWindows x86-64

opencv_contrib_python-3.4.2.17-cp27-cp27m-win32.whl (28.0 MB view details)

Uploaded CPython 2.7mWindows x86

opencv_contrib_python-3.4.2.17-cp27-cp27m-macosx_10_6_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (47.9 MB view details)

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

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.2.17-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e330a3cac502403200c1e195fcf70db4147ef6a767e72be21143c6e40eeab711
MD5 01047d48d0001c2d8dd8884dadca0be7
BLAKE2b-256 10588433265d728cb603dc41c6ba04515c31ab14e490a55c4a654638e2ba9f6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.2.17-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 fef0dd242d793dbe1c7ff2f4de7c51f75893f2384347062fbd2e64ad1942f7ec
MD5 0bdb15f4f4d6f69c60bc3add82cd25c7
BLAKE2b-256 3b3e29bb389837e0fe067abb858b2e9b58386e415b9a6e25a75c2feeb75cf1a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.2.17-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 27569ae60737485c89bba6d6759d54b14966ddaf60e72f834578b0c1deeea73b
MD5 73a72b0fa89e565e7d8e786b652fc958
BLAKE2b-256 12328d32d40cd35e61c80cb112ef5e8dbdcfbb06124f36a765df98517a12e753

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.2.17-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ca67a1154029e3f752305a3b0be28f802ed2272d483c1cf12b6e6e7f4683d319
MD5 9818bc0076bc788d273b75b82065e19c
BLAKE2b-256 d7043e5655c617fe064b00b80a72e0585ab16443aaaacd3c022ee27b0fdcd6e9

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.2.17-cp37-cp37m-macosx_10_6_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-3.4.2.17-cp37-cp37m-macosx_10_6_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 e20b1ff15c6207107d0c206529add2900594a9476ea1f35694bba073d939a339
MD5 ff2ef9c15063ba740cffe6d74c8e6ef8
BLAKE2b-256 40adda7a60218f8256edda6278aaf0d7434e9b993ef15c7df17cb0d65f121b84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.2.17-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 7b56e8fd9f13fe7009e20947213f9e10920dd2a743e3a1a00fd112d3546308df
MD5 21b43db569c2610b2f357ef57d3a5793
BLAKE2b-256 49a7ef76db2dec6cd4ad450fd4c8d58d023264a92b359bd8b1425e313301497a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.2.17-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 ee46ff67d232fb6e8894d2e1cf15ef330b4dc98c7570d0b829d8c087029f675a
MD5 7d70228bdb27ef622d7b3f89386686ed
BLAKE2b-256 ebfbadd3594e9138527f1696494ff335becc75f2b96b6126613fd275ceaf634b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.2.17-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 17b8e7ae829c6fcf427abd34e378fca129fbf3b43a57e46b1f2d582b44e8a11e
MD5 95b0925bdd38faba8788da04394f1566
BLAKE2b-256 6129fc60b2de1713aa92946992544329f20ccb5e4ba26290f403e04b7da44105

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.2.17-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 24082be7541d69c12697ffe4a0210c0f9665ad8f783b55e4cb6dcc7d30c16e04
MD5 bc25a8fe0759b3ec425a75dfd018217d
BLAKE2b-256 1416fb5774569a04131b3f54206e316337a4708b9b493af6fc146702bd370061

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.2.17-cp36-cp36m-macosx_10_6_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-3.4.2.17-cp36-cp36m-macosx_10_6_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 3a093c20d42863d68fe6f7123551d83cf702382c753fd7e35cfc1f4049a576be
MD5 e88c05112c4fa5d8126646905a8b47bb
BLAKE2b-256 e4d2e694bf2c26c16eab0e44b958671714d942fc327bfd2c5b719f8641ad090f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.2.17-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 e54c1541a19162336a9a2121af63ac1383c0fd0202cbff43cdb0eb0065d9793c
MD5 81b1fc497d2ca9d10d27a4bfd835d204
BLAKE2b-256 99b9d02e0e6949047caeee60170a08e69d9543bef2ef903ea752e64ee479f4b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.2.17-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 2a1b7c1f555c60785e83a188321a3f8c5047e974ac8556095ca24478471352f9
MD5 a154f5bcc428ef7c90bcc61f95c71b4f
BLAKE2b-256 8d100bb7bf90293fa81c00d52e6dbe6e3ca49cc9afa8345543010a1c7e169416

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.2.17-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b84b4d78ac987e07a1e837444c2731b4a72bc7c0a90f3fbf399624d4b379fd2f
MD5 adeec89e97a5276d53e1a89cb26be841
BLAKE2b-256 af8d982e0d670dcaa588242d4889814c09b137fbc62bc57df9fbf490ab6c9b24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.2.17-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 08bc85b34652af8b58695473fbcd3859175267d6fd94af0fd22e9209797c724b
MD5 aa9581fd54f95dba3f167577fff34bc5
BLAKE2b-256 ca3421a5549b03ed0f51ae9cd5a52e27eabbf1abdc97d9b7508cdf4c8fe1cbab

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.2.17-cp35-cp35m-macosx_10_6_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-3.4.2.17-cp35-cp35m-macosx_10_6_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 d5abbe832c5827fb28c907d4b9c04c7a401764137daaf088a118bec63a5361b9
MD5 6fe1f329a6cb895e163823414202510e
BLAKE2b-256 d476987cba3db97730d1e19b06add3ab079d2fcc397cd3065350d34e43ef843c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.2.17-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 0c66cfb3003b3121ffa10e5e8e9df3f9c9695ea58737cc1cc3148050da262abb
MD5 b8b390f8106ca716998c84593a3b4df3
BLAKE2b-256 5fb9837fd94323a968bad8fd60040c6239c7475442eac65cbbbdbd7568999781

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.2.17-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 a5fb913dee8c0d3aff3446e201bd832fe0936d449c74f53fe4c863d2c27800e7
MD5 e28e1d45bc652c77395103b0e53cb122
BLAKE2b-256 3e203859926e6f709207063f6020237f8adae18561fa9b91ae3405f83c7e3bd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.2.17-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 12689a33d8e33b79904e0b843c2e987f9b8fe146b6156c5bbd26d8df0728b7a7
MD5 d978a0513d5be7e54c2def56142554ba
BLAKE2b-256 923bb411eb40e6be5f9a6b31afd92423746950978f39d2e5c7a5bc0013a6b783

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.2.17-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5faf2cc6c3aa7e7f2ded2925b8842c3036d9bebee28a24303d7468242ab02394
MD5 d7ac0a83d1b1b41b416b745fc3a5fc55
BLAKE2b-256 9f52d3ad344595ebf8eadb294d1f3263c14076911c5934f76f064db46cd4f5e9

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.2.17-cp34-cp34m-macosx_10_6_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-3.4.2.17-cp34-cp34m-macosx_10_6_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 1ec1f062926520eee82f6ae0502bbe7252b2be08ea0d2b8303387f2d8846a04c
MD5 6164bf303b8e94c038dfe71c6cd4ce5a
BLAKE2b-256 6bb63538e4b61d23cd12ef5a716f104f760983a50a125b5810a321bd3c09f183

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.2.17-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 442f115e8121b8837917422a2d6f2854083321460ddd5660e0947d87668e4af2
MD5 3e1cee09bb321aaba1cf15fff044275c
BLAKE2b-256 8c6ae7e6328cad323e0b39a9d72a24906341f1593b1c67b985e2d422bc335e37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.2.17-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2291c5d3f7ff58643d4357009776c4ef15acc22e3adf42a28def4f0d00a9e025
MD5 b7a6747d7157f3e6fbceafa1eb32f64e
BLAKE2b-256 4fcc193ecccec08a84cbcfa2d6d92915303e2934a2bdc35264c336e211f810e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.2.17-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 36ab0ffc135e47ad1e9fef1622a9464fefbf6cf9d12a2bc15d57f061483af7d6
MD5 93c1a1408f8a744b17dffc3a82c3b802
BLAKE2b-256 a57522c80569f10f507579626bed82dd4f7282ff745aeebd4bf8a9ab2a7c88e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.2.17-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 374029881bb8a2231d3fc53a0d586e0fa13605af33b18f918d05f0d8de6416a0
MD5 dd8a6668b43ae1b8e815b34342fc6cb3
BLAKE2b-256 3ac745c5b8efbfb9cd70f224eeb9683561a24b639440d1a957caa48f7a2fb031

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.2.17-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ac919e9a8bb4efd1b8694814fa3e0aecb043811fa416d2b70a925eda90245d62
MD5 6b9ac6d5725db87d49dfd545ff4549a9
BLAKE2b-256 85e41e89f40f052c6499e5f2b0481256dd9f7018da96ec476164f28f626ec785

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for opencv_contrib_python-3.4.2.17-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 dd4688de552fd1e6a78c2df2d64785e8c42def6d482d75104ca9f47daa753216
MD5 ff322486a9d08d435ba7a5a273f5e7c8
BLAKE2b-256 1d4cd9e052074f81394f858e43e42f9abaf85185d7aacac5869716ff23666612

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-3.4.2.17-cp27-cp27m-macosx_10_6_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-3.4.2.17-cp27-cp27m-macosx_10_6_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 825b67b4fd0cf4bc1671e01d44560eb42ee0cfadc5c451adf0354a220e55b37f
MD5 e181c696b2e1f4c9a205b6697ca7f154
BLAKE2b-256 917f266c2b0b881fd86147bdf524e9d89a5155dcf4aa4e9dd82e62759110c165

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page