{ "info": { "author": "Zivid AS", "author_email": "support@zivid.com", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: BSD License", "Programming Language :: Python :: 3", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Scientific/Engineering" ], "description": "# Zivid Python\n\nZivid Python is the official Python package for Zivid 3D cameras. Read more about Zivid at [zivid.com](https://www.zivid.com/).\n\n[![Build Status][ci-badge]][ci-url] [![PyPI Package][pypi-badge]][pypi-url]\n![Zivid Image][header-image]\n\n---\n\n*Contents:* **[Installation](#installation)** | **[Quick Start](#quick-start)** | **[Examples](#examples)** | **[Versioning](#versioning)** | **[License](#license)** | **[Support](#support)** | **[Test Matrix](#test-matrix)**\n\n---\n\n## Installation\n\n### Dependencies\n\n* [Python](https://www.python.org/) version 3.5 or higher\n* [Zivid SDK](https://zivid.atlassian.net/wiki/spaces/ZividKB/pages/59080712/Zivid+Software+Installation) version 1.3.0 or higher\n* [Compiler](doc/CompilerInstallation.md) with C++17 support\n\n*Windows users also needs to make sure that the Zivid SDK installation folder is in system `PATH` before using the package, not only the terminal PATH variable. The default install location that should be added to system `PATH` is `C:\\Program Files\\Zivid\\bin`.*\n\n### Using PIP\n\nThe easiest way to install Zivid Python is to use PIP.\n\nOn some systems Python 3 `pip` is called `pip3`. In this guide we assume it is called `pip`.\n\nWhen using PIP version 19 or higher build dependencies are handled automatically.\n\nInstallation may take some time since the `setup.py` script will download additional dependencies and compile C++ source code in the background.\n\n pip install zivid\n\n#### Old PIP\n\nIf you are using a version of PIP older than version 19 please manually install the dependencies listed in [pyproject.toml](pyproject.toml) before installing zivid.\n\n pip install scikit-build cmake ninja\n pip install zivid\n\n## Quick Start\n\nLaunch a Python interpreter and run the following code.\n\n import zivid\n app = zivid.Application()\n camera = app.connect_camera()\n frame = camera.capture()\n frame.save(\"my-frame.zdf\")\n\nFor more advanced usage see the [Examples](#examples) section.\n\n### Using camera emulation\n\nIf you do not have a camera, you can use the `MiscObjects.zdf` file in [ZividSampleData.zip](http://www.zivid.com/software/ZividSampleData.zip) to emulate a camera.\n\n import zivid\n app = zivid.Application()\n camera = app.create_file_camera(\"path/to/MiscObjects.zdf\")\n frame = camera.capture()\n frame.save(\"my-frame.zdf\")\n\n## Examples\n\nStandalone example programs can be found in the [samples](samples) directory.\n\n## Versioning\n\nThis python module is using [PEP 440](https://www.python.org/dev/peps/pep-0440) for versioning. The features available in the module depends on the Zivid SDK version used when building the module. When updating this Python package it is *recommended* to also update to the latest [Zivid SDK](http://www.zivid.com/software). Refer to the [Test Matrix](#test-matrix) for supported version.\n\nThe version number of the Zivid Python module consists of six numbers. The three first numbers of the version is the [semantic version](https://semver.org/) of the code in this repository. The last three numbers is the version of the underlying Zivid SDK library used by the Python module.\n\n### Version breakdown\n\n Zivid SDK version = 1.4.1 (semantic version)\n v v v\n Zivid Python module version = 1.0.0.1.4.1\n ^ ^ ^\n Wrapper code version = 1.0.0 (semantic version)\n\n### PyPI\n\nWhen installing using PIP it is possible to specify the required version. This can be useful if upgrading Zivid SDK is not desired, but you want to update Zivid Python.\n\n#### Install latest version of Zivid Python using latest version of Zivid SDK\n\n pip install zivid\n\n#### Install version 1.0.0 of Zivid Python using latest version of Zivid SDK\n\n pip install zivid==1.0.0\n\n#### Install version 1.0.0 of Zivid Python using Zivid SDK version 1.4.0\n\n pip install zivid==1.0.0.1.4.0\n\n#### Install version 1.0.0 of Zivid Python using Zivid SDK version 1.3.0\n\n pip install zivid==1.0.0.1.3.0\n\n*Support for older versions of Zivid SDK will be discontinued when they are no longer compatible with latest version of the wrapper code.*\n\n## License\n\nThis project is licensed, see the [LICENSE](LICENSE) file for details.\n\n## Support\n\nPlease visit [Zivid Knowledge Base](http://help.zivid.com) for general information on using Zivid 3D cameras. If you cannot find a solution to your issue, please contact support@zivid.com.\n\n## Test matrix\n\n| Operating System | Python version | Zivid SDK version |\n| :--------------- | :------------- | :---------------- |\n| Ubuntu 18.04 | 3.6 | 1.4.0 |\n| Ubuntu 16.04 | 3.5 | 1.4.0 |\n| Fedora 30 | 3.7 | 1.4.0 |\n| Arch Linux* | latest | latest |\n| Windows 10* | 3.5, 3.6, 3.7 | 1.4.0 |\n\n[*] Only build, no unit testing.\n\n[header-image]: https://www.zivid.com/hubfs/softwarefiles/images/zivid-one-plus-3x-1200x400.png\n[ci-badge]: https://img.shields.io/azure-devops/build/zivid-devops/376f5fda-ba80-4d6c-aaaa-cbcd5e0ad6c0/2/master.svg\n[ci-url]: https://dev.azure.com/zivid-devops/zivid-python/_build/latest?definitionId=2&branchName=master\n[pypi-badge]: https://img.shields.io/pypi/v/zivid.svg\n[pypi-url]: https://pypi.org/project/zivid\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://www.zivid.com", "keywords": "", "license": "BSD 3-Clause", "maintainer": "", "maintainer_email": "", "name": "zivid", "package_url": "https://pypi.org/project/zivid/", "platform": "", "project_url": "https://pypi.org/project/zivid/", "project_urls": { "Homepage": "https://www.zivid.com" }, "release_url": "https://pypi.org/project/zivid/0.9.1.1.5.0/", "requires_dist": [ "numpy" ], "requires_python": "", "summary": "Defining the Future of 3D Machine Vision", "version": "0.9.1.1.5.0" }, "last_serial": 5800436, "releases": { "0.9.1.1.3.0": [ { "comment_text": "", "digests": { "md5": "903165cd7f2d60ee6ede3d49765a0dd8", "sha256": "84104466b521f5fa4bf3d2f68bdc79ce4de9eec9fe908073acfb61fbbf66716c" }, "downloads": -1, "filename": "zivid-0.9.1.1.3.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "903165cd7f2d60ee6ede3d49765a0dd8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 329483, "upload_time": "2019-07-04T10:32:06", "url": "https://files.pythonhosted.org/packages/de/54/7f0b7b9d210a380b6fa27da1cea3f66a5a2b8997ec0f2e0bb6168acb2106/zivid-0.9.1.1.3.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f73ff6fb5e4ec2a3806ac1020e9991e0", "sha256": "61a7e022a4733187402a5c5d6ff4a7701d7ac655dce0fa711de47fe08bf636db" }, "downloads": -1, "filename": "zivid-0.9.1.1.3.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "f73ff6fb5e4ec2a3806ac1020e9991e0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 329437, "upload_time": "2019-07-04T09:52:19", "url": "https://files.pythonhosted.org/packages/32/c9/a20d2e3f1bcf66e2f1e96fe38e2c483a03f08bba8d6a8d88275b675168b6/zivid-0.9.1.1.3.0-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "0d41273547723a29726822196ba527df", "sha256": "04285a7d7f2d93c3b3e3a1398cca2e3f34679040be361845e3b92f4a92baea2e" }, "downloads": -1, "filename": "zivid-0.9.1.1.3.0.tar.gz", "has_sig": false, "md5_digest": "0d41273547723a29726822196ba527df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 156636, "upload_time": "2019-07-01T20:04:40", "url": "https://files.pythonhosted.org/packages/3c/ac/d67a1fbac01a97d7977a90c480cc231f28e383d1778fe088ecc740835b3f/zivid-0.9.1.1.3.0.tar.gz" } ], "0.9.1.1.4.0": [ { "comment_text": "", "digests": { "md5": "86ecb65de4c5a53ad77a3525e1cd79ad", "sha256": "c5ed9f9b7c2a5fa75ed7aff3e391a02b91b059be3e88c340b03bd2de66a19da4" }, "downloads": -1, "filename": "zivid-0.9.1.1.4.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "86ecb65de4c5a53ad77a3525e1cd79ad", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 329468, "upload_time": "2019-07-04T10:32:08", "url": "https://files.pythonhosted.org/packages/72/91/689fcd08e6af4717b8703cb36d9280d96e930a5b8f240a3f56c2a598834c/zivid-0.9.1.1.4.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "8ffa3f36c808bca4340e38f5687d555a", "sha256": "cd79225828a276698a3aa227bcc51c1e40951cfc8bea184db77379dfbdcf8877" }, "downloads": -1, "filename": "zivid-0.9.1.1.4.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "8ffa3f36c808bca4340e38f5687d555a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 329455, "upload_time": "2019-07-04T09:52:21", "url": "https://files.pythonhosted.org/packages/f3/6d/74496129780031b2093d11fc3ef8792f5372b4c1117b3dc2969ee7035b94/zivid-0.9.1.1.4.0-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "be1eba8566d9e81c60eb7995b1f6f131", "sha256": "8098a17c968d4a194a9145f901aef5c3f89329178a65281528be6e1a905f9a06" }, "downloads": -1, "filename": "zivid-0.9.1.1.4.0.tar.gz", "has_sig": false, "md5_digest": "be1eba8566d9e81c60eb7995b1f6f131", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 157327, "upload_time": "2019-07-02T18:08:11", "url": "https://files.pythonhosted.org/packages/f8/b2/c063512dd63bd8b927ae59701a5fadeeac9e680ec203fd4ada5074ae113c/zivid-0.9.1.1.4.0.tar.gz" } ], "0.9.1.1.5.0": [ { "comment_text": "", "digests": { "md5": "4ea952bef69e974fc2c5bae4fa813ac6", "sha256": "c475a67592039ab20d45e20880f7c9e4356589d273b15aef348f1a7fedaa72d7" }, "downloads": -1, "filename": "zivid-0.9.1.1.5.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "4ea952bef69e974fc2c5bae4fa813ac6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 329709, "upload_time": "2019-09-08T20:24:43", "url": "https://files.pythonhosted.org/packages/47/7f/0f5489b3ce42f2eea69281a80104bce658bdb502f860fa36a1496bd5758b/zivid-0.9.1.1.5.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "53d9af403d378570e0b884130152e1e9", "sha256": "bbc12e60b901104c7765d590dd3406c713ceed4b9976e6ba085b6919e6901de7" }, "downloads": -1, "filename": "zivid-0.9.1.1.5.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "53d9af403d378570e0b884130152e1e9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 329695, "upload_time": "2019-09-08T20:24:44", "url": "https://files.pythonhosted.org/packages/53/c0/a78302c33789e9cf7d45944db75e94d2502cd4bd0a371c38621381fed8c2/zivid-0.9.1.1.5.0-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "dfbf7502b33254c9a202c783f2fc2870", "sha256": "34c28513d3f701c14b149fdd82a248d7ea315ef2bc7c64c1cbfb06132274a5b9" }, "downloads": -1, "filename": "zivid-0.9.1.1.5.0.tar.gz", "has_sig": false, "md5_digest": "dfbf7502b33254c9a202c783f2fc2870", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 158446, "upload_time": "2019-09-08T20:24:46", "url": "https://files.pythonhosted.org/packages/9d/bc/8c2bbee7bf6e677c1010f2cc1da64bb227c1937a9c56068ca9c3f52af988/zivid-0.9.1.1.5.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "4ea952bef69e974fc2c5bae4fa813ac6", "sha256": "c475a67592039ab20d45e20880f7c9e4356589d273b15aef348f1a7fedaa72d7" }, "downloads": -1, "filename": "zivid-0.9.1.1.5.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "4ea952bef69e974fc2c5bae4fa813ac6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 329709, "upload_time": "2019-09-08T20:24:43", "url": "https://files.pythonhosted.org/packages/47/7f/0f5489b3ce42f2eea69281a80104bce658bdb502f860fa36a1496bd5758b/zivid-0.9.1.1.5.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "53d9af403d378570e0b884130152e1e9", "sha256": "bbc12e60b901104c7765d590dd3406c713ceed4b9976e6ba085b6919e6901de7" }, "downloads": -1, "filename": "zivid-0.9.1.1.5.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "53d9af403d378570e0b884130152e1e9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 329695, "upload_time": "2019-09-08T20:24:44", "url": "https://files.pythonhosted.org/packages/53/c0/a78302c33789e9cf7d45944db75e94d2502cd4bd0a371c38621381fed8c2/zivid-0.9.1.1.5.0-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "dfbf7502b33254c9a202c783f2fc2870", "sha256": "34c28513d3f701c14b149fdd82a248d7ea315ef2bc7c64c1cbfb06132274a5b9" }, "downloads": -1, "filename": "zivid-0.9.1.1.5.0.tar.gz", "has_sig": false, "md5_digest": "dfbf7502b33254c9a202c783f2fc2870", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 158446, "upload_time": "2019-09-08T20:24:46", "url": "https://files.pythonhosted.org/packages/9d/bc/8c2bbee7bf6e677c1010f2cc1da64bb227c1937a9c56068ca9c3f52af988/zivid-0.9.1.1.5.0.tar.gz" } ] }