{ "info": { "author": "Kevin J. Walchko", "author_email": "kevin.walchko@outlook.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.7", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Application Frameworks", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "# OpenCV Utilities\n\n[![Latest Version](https://img.shields.io/pypi/v/opencvutils.svg)](https://pypi.python.org/pypi/opencvutils/)\n\n[![License](https://img.shields.io/pypi/l/opencvutils.svg)](https://pypi.python.org/pypi/opencvutils/)\n\nThis is a set of OpenCV utilities that should make working with OpenCV a\nlittle easier. I forked this and added somethings for a class I taught in Spring\n2018. You should probably use Adrian's library, link below.\n\n**Original Author:** Adrian Rosebrock\n\n**Original Name:** [imutils](https://github.com/jrosebr1/imutils)\n\n## Install\n\nThe preferred way to install is using `pip`:\n\n pip install opencvutils\n\n### Other Libraries\n\nYou will need both `numpy` and `opencv3` for this to work. Use your os\npackage manager to install. Unfortunately this is not fast, `numpy`\ninstall involves compiling things, so go grab a coffee or something\nwhile you wait.\n\nfor macOS (please be aware, the `brew` people keep changing this!):\n\n pip install numpy\n brew install opencv\n\n## Development\n\nTo submit git pulls, clone the repository and set it up as follows:\n\n git clone https://github.com/walchko/opencvutils\n cd opencvutils\n pip install -e .\n\n## Documentation\n\nSee the [Jupyter\nNotebooks](https://github.com/walchko/opencvutils/tree/master/docs) for\nexamples of how to use this library. It contains a lot of common image\nmanipulations.\n\n### Video Encoding\n\nYou can make a video like this:\n\n```python\nimport cv2\nfrom opencvutils.Camera import SaveVideo\n\nshape = (240,320) # rows (height), cols (width)\nsv = SaveVideo()\n\n# you can change the default encoder using a four_cc\n# string, but not all of them work!\n# sv.encoder('H264')\n# sv.encoder('MP4V')\n# sv.encoder('x264')\n\nsv.open(filename, shape[1], shape[0]) # order is backwards from opencv!!!\n\nfor i in range(100):\n ret, img = camera.read() # grab image\n sv.write(img)\n\nsv.release()\n```\n\n### Scripts\n\n``` {.sourceCode .bash\npi@raspberry ~ $ mjpeg_server.py -h\n usage: mjpeg_server.py [-h] [-v] [-p PORT] [-c CAMERA] [-t TYPE]\n [-s SIZE SIZE]\n\n A simple mjpeg server Example: mjpeg-server -p 8080 --camera 4\n\n optional arguments:\n -h, --help show this help message and exit\n -v, --version show program's version number and exit\n -p PORT, --port PORT mjpeg publisher port, default is 9000\n -c CAMERA, --camera CAMERA\n set opencv camera number, ex. -c 1\n -t TYPE, --type TYPE set camera type, either pi or cv, ex. -t pi\n -s SIZE SIZE, --size SIZE SIZE\n set size\n```\n\nThen you could do:\n\n pi@raspberry ~ $ mjpeg_server.py -t pi -s 640 480\n\nnow navigate to your computer (hostname:9000) and you should see the\nmjpg stream. Note, if you changed the port number with the `-p` arg,\nthen use that port number.\n\n# Change Log\n\n| Data | Version| Notes |\n|------------|--------|-------------------------------------------|\n| 2018-07-19 | 0.9.4 | simple clean-up and updating some things |\n| 2017-10-29 | 0.9.3 | bug fixes |\n| 2017-04-09 | 0.9.0 | initial python 3 support |\n| 2017-03-31 | 0.7.0 | refactored and got rid of things I don't need |\n| 2017-01-29 | 0.6.0 | added video capture (video and images) program |\n| 2016-12-30 | 0.5.3 | typo fix |\n| 2016-12-30 | 0.5.1 | refactored |\n| 2016-12-11 | 0.5.0 | published to PyPi |\n\n# MIT License\n\nCopyright (c) 2016 Kevin J. Walchko\nCopyright (c) 2014 Adrian Rosebrock\n\nPermission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\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://github.com/walchko/opencvutils", "keywords": "computer vision,image processing,opencv", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "opencvutils", "package_url": "https://pypi.org/project/opencvutils/", "platform": "", "project_url": "https://pypi.org/project/opencvutils/", "project_urls": { "Homepage": "https://github.com/walchko/opencvutils" }, "release_url": "https://pypi.org/project/opencvutils/0.9.4/", "requires_dist": [ "numpy", "pyyaml", "build-utils", "fake-rpi" ], "requires_python": "", "summary": "Simple OpenCV 3.x image processing functions", "version": "0.9.4" }, "last_serial": 4082571, "releases": { "0.5.0": [ { "comment_text": "", "digests": { "md5": "b836d7d03584d3877ef5b09a0da2e422", "sha256": "c3733847dfff0fd1721a3c726c93406b2a0ebeb4d7acacdc449a709269ef06f3" }, "downloads": -1, "filename": "opencvutils-0.5.0-py2-none-any.whl", "has_sig": false, "md5_digest": "b836d7d03584d3877ef5b09a0da2e422", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 5832, "upload_time": "2016-12-11T21:47:25", "url": "https://files.pythonhosted.org/packages/28/6c/89cab68c9f436088b49c92baed3efd09eeeb9d229c3e0d2e55dd23678cd4/opencvutils-0.5.0-py2-none-any.whl" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "770d678f1fd42acfea66edc7d849d286", "sha256": "c077730bc63caa07386b723bbc8137a6e4432e212d0d345afe8ef6421781aad7" }, "downloads": -1, "filename": "opencvutils-0.5.1-py2-none-any.whl", "has_sig": false, "md5_digest": "770d678f1fd42acfea66edc7d849d286", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 6312, "upload_time": "2016-12-12T00:22:26", "url": "https://files.pythonhosted.org/packages/72/64/5419a0a1e4e8c15856850e71fc783bbd91bf84c7eb73600c1a4c6114da3b/opencvutils-0.5.1-py2-none-any.whl" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "84efb460ec3f782f5f4af50ca53d1024", "sha256": "a24034a4e5091eb011c1967ec3ee341d6dfbdbcc834c1449adfdde3a3c1b58dc" }, "downloads": -1, "filename": "opencvutils-0.5.2-py2-none-any.whl", "has_sig": false, "md5_digest": "84efb460ec3f782f5f4af50ca53d1024", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 6389, "upload_time": "2016-12-30T20:21:31", "url": "https://files.pythonhosted.org/packages/10/2e/9ef8307fe6d406ae5434067fb5d598a92da6ffefb538bf072447e99e3dbe/opencvutils-0.5.2-py2-none-any.whl" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "9f3d036fb55f74d3b097a419b41e0c87", "sha256": "940b68c15ab5087f1ab916acc9b830afe8fb369f968de07c40f85c0357a3b819" }, "downloads": -1, "filename": "opencvutils-0.5.3-py2-none-any.whl", "has_sig": false, "md5_digest": "9f3d036fb55f74d3b097a419b41e0c87", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 19941, "upload_time": "2016-12-31T01:24:14", "url": "https://files.pythonhosted.org/packages/92/b5/0aadd93ec94dd44becfdd4cb069787fa05c0fe91c8ec64dee41c69fb7ebf/opencvutils-0.5.3-py2-none-any.whl" } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "278095640048dccc99f6c0c9e3a6b457", "sha256": "32ebcd134200d8b11d3ba35bfbb6824ef30737dfa6495e764b99014f16c9b86a" }, "downloads": -1, "filename": "opencvutils-0.5.4-py2-none-any.whl", "has_sig": false, "md5_digest": "278095640048dccc99f6c0c9e3a6b457", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 19948, "upload_time": "2016-12-31T06:39:47", "url": "https://files.pythonhosted.org/packages/df/3c/af172a0add1e5e7ad9d6b8e870da50d37d94abaef322707f94e9798c176c/opencvutils-0.5.4-py2-none-any.whl" } ], "0.5.5": [ { "comment_text": "", "digests": { "md5": "c211731e46d55c7b9c1ffc504f810dab", "sha256": "de0c82521664d33a121b919fadec14d3738e8de91a677513c3240b0723e78587" }, "downloads": -1, "filename": "opencvutils-0.5.5-py2-none-any.whl", "has_sig": false, "md5_digest": "c211731e46d55c7b9c1ffc504f810dab", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 21014, "upload_time": "2016-12-31T06:47:07", "url": "https://files.pythonhosted.org/packages/29/11/5754bde6202f69efe765e6e7d193aa212b6f4a938c2632ec15cde5b980c5/opencvutils-0.5.5-py2-none-any.whl" } ], "0.5.6": [ { "comment_text": "", "digests": { "md5": "2c69448aaefc96c1bd716520227bc0eb", "sha256": "573ae0741cfb1f27064c5148a704d87b2160f61a21aaf983af40e36b48f93eb9" }, "downloads": -1, "filename": "opencvutils-0.5.6-py2-none-any.whl", "has_sig": false, "md5_digest": "2c69448aaefc96c1bd716520227bc0eb", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 21019, "upload_time": "2016-12-31T06:57:36", "url": "https://files.pythonhosted.org/packages/ea/c2/d920a23d5ad26b6fc1117585d20e4a7579bd1c138822b8dce7806818d0d1/opencvutils-0.5.6-py2-none-any.whl" } ], "0.5.7": [ { "comment_text": "", "digests": { "md5": "33640b05c534cceb08105e097deff020", "sha256": "53ba148ab24493c83036d53b3939d0a4502cf79e78ba72d48dfa22084324da50" }, "downloads": -1, "filename": "opencvutils-0.5.7-py2-none-any.whl", "has_sig": false, "md5_digest": "33640b05c534cceb08105e097deff020", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 19319, "upload_time": "2017-01-01T05:52:33", "url": "https://files.pythonhosted.org/packages/3e/7e/df21b7fac82786693cf2c8d8ec17151499d2321e9f19890e508df3aafe3a/opencvutils-0.5.7-py2-none-any.whl" } ], "0.5.8": [ { "comment_text": "", "digests": { "md5": "28053548bd90832f32cd6d2ed602f98d", "sha256": "973bcfeba3a5534702b25b5648d6aada23ac1dc19bc8a1470d92d9f6cae761af" }, "downloads": -1, "filename": "opencvutils-0.5.8-py2-none-any.whl", "has_sig": false, "md5_digest": "28053548bd90832f32cd6d2ed602f98d", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 19430, "upload_time": "2017-01-01T17:02:51", "url": "https://files.pythonhosted.org/packages/45/6d/ab476e52e66f82fb76ba9e242acc16ba6f87aa292cb977d5b68325b46fcc/opencvutils-0.5.8-py2-none-any.whl" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "b2b42f2cf305045bdde05be0dac1a88b", "sha256": "a47d4df8ddde605d6f80cdc2c1207e12de0bf10e74d6d4e591cb64c8fd77cca1" }, "downloads": -1, "filename": "opencvutils-0.7.0-py2-none-any.whl", "has_sig": false, "md5_digest": "b2b42f2cf305045bdde05be0dac1a88b", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 29736, "upload_time": "2017-04-01T02:14:00", "url": "https://files.pythonhosted.org/packages/f6/63/6a5ad56fb4ecf493458fd9137df8444de3ec3544d728aaefa72107394c7c/opencvutils-0.7.0-py2-none-any.whl" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "4e4bad031b3a01dde42117aea6a23ae9", "sha256": "9aeb1918e366e9c649cde32ff2e9b374fc920a69139a1a85e4eb1f0f79977e11" }, "downloads": -1, "filename": "opencvutils-0.8.0-py2-none-any.whl", "has_sig": false, "md5_digest": "4e4bad031b3a01dde42117aea6a23ae9", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 29738, "upload_time": "2017-04-03T01:46:33", "url": "https://files.pythonhosted.org/packages/d4/b4/a02a6862ea2d1ced62b1a2f6799850ba0fc7cb678aa800f7f3c6d7d867ab/opencvutils-0.8.0-py2-none-any.whl" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "c476422a76b2b42e1ff3fedffd2b4202", "sha256": "fa1d8d3a8f948cca060ffc6eb116e201ea69061c0bc1a0862386d74fa9b57f3f" }, "downloads": -1, "filename": "opencvutils-0.9.0-py2-none-any.whl", "has_sig": false, "md5_digest": "c476422a76b2b42e1ff3fedffd2b4202", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 31914, "upload_time": "2017-04-09T20:52:13", "url": "https://files.pythonhosted.org/packages/3f/ce/d3b817460529b3e4753731f8fb5bf3d16800da8254c1f7788528983c9d30/opencvutils-0.9.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e326da2c943966a595befeb3e651ffd7", "sha256": "298fb5268393702e830c159c0590e734568049bef885151c043efa339ce102ed" }, "downloads": -1, "filename": "opencvutils-0.9.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e326da2c943966a595befeb3e651ffd7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 30684, "upload_time": "2017-04-09T20:52:16", "url": "https://files.pythonhosted.org/packages/43/2a/956cee40587a1cabd6e8bf4d7447f25a16221b6df79364627483324f3589/opencvutils-0.9.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f1047025406c5e574f65fdf85cce137c", "sha256": "ae32374265c335959c8b5649f5b2e2259a1ca18971aec634b548642ba39d6651" }, "downloads": -1, "filename": "opencvutils-0.9.0.tar.gz", "has_sig": false, "md5_digest": "f1047025406c5e574f65fdf85cce137c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14339, "upload_time": "2017-04-09T20:52:18", "url": "https://files.pythonhosted.org/packages/9e/15/5f67ca9c96997ef6823a62ec1d0b09d65d55c775732c7728730dc865d8cb/opencvutils-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "c96323eecb59d801882df977fa8f475b", "sha256": "5658f1679e9d04d70421e1e60b985eda8268e747c62d665db04c3c295e78f6b3" }, "downloads": -1, "filename": "opencvutils-0.9.1-py2-none-any.whl", "has_sig": false, "md5_digest": "c96323eecb59d801882df977fa8f475b", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 21634, "upload_time": "2017-04-10T05:20:50", "url": "https://files.pythonhosted.org/packages/89/24/c60fb49992f9a2a4cf8fea808dc7b4233d306b0ce358900c4fe89863a1c9/opencvutils-0.9.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d0ca4ec014ab2acb9fd3839cc7783875", "sha256": "799d112b1ee11c126cf8461512bc6ceb79d077868eb233a4a46a38e6ec06f583" }, "downloads": -1, "filename": "opencvutils-0.9.1-py3-none-any.whl", "has_sig": false, "md5_digest": "d0ca4ec014ab2acb9fd3839cc7783875", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 21635, "upload_time": "2017-04-10T05:20:52", "url": "https://files.pythonhosted.org/packages/84/7c/bde142b847dc02f7b97360f9fe050a764567bda3b1eab73fdb24447b296c/opencvutils-0.9.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "296fb6514a726a6f83a94b9926db981e", "sha256": "6e8c7306427f02fad4196b054c4da1e12022afe84da6e22628fa1ea35419450a" }, "downloads": -1, "filename": "opencvutils-0.9.1.tar.gz", "has_sig": false, "md5_digest": "296fb6514a726a6f83a94b9926db981e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13986, "upload_time": "2017-04-10T05:20:54", "url": "https://files.pythonhosted.org/packages/63/df/a431da844da60b3be93fef85e9d15207f0bd037b93a2af4ee493b55ac700/opencvutils-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "9ee05d5e84c740385483844edae3837c", "sha256": "2711e1ebc4e32624f045f6f839dda03bda7179df6b2992af0d78fbaae828c995" }, "downloads": -1, "filename": "opencvutils-0.9.2-py2-none-any.whl", "has_sig": false, "md5_digest": "9ee05d5e84c740385483844edae3837c", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 22474, "upload_time": "2017-06-19T02:36:30", "url": "https://files.pythonhosted.org/packages/39/33/b75cffd06290c9197a93f567ba6df78ca7bcaad42dddfa723d38b46d60db/opencvutils-0.9.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8e066802bb37c50095e7fd0d1fd3370d", "sha256": "fa2c0a3664c13a923d9a11bcb127bba3681b426ea3ac3b777facd1145635bcc2" }, "downloads": -1, "filename": "opencvutils-0.9.2-py3-none-any.whl", "has_sig": false, "md5_digest": "8e066802bb37c50095e7fd0d1fd3370d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22473, "upload_time": "2017-06-19T02:36:32", "url": "https://files.pythonhosted.org/packages/4e/03/42d4522b0c7fa711433ec5582a2f2e25a5484e08ff77bca873322b5755d8/opencvutils-0.9.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6a2ca782766bcf565714c6ddebed5848", "sha256": "9a39ef5d338b69c0bc210ca6305a37b433e9e109c7b2de9cedaf2ac4b90d98f2" }, "downloads": -1, "filename": "opencvutils-0.9.2.tar.gz", "has_sig": false, "md5_digest": "6a2ca782766bcf565714c6ddebed5848", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14844, "upload_time": "2017-06-19T02:36:33", "url": "https://files.pythonhosted.org/packages/4c/30/43822b22df05acbc851655821a84471000abf8a4bfa7148775d39f3067f0/opencvutils-0.9.2.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "32e6070012247fe6456a0c6da9ca51df", "sha256": "40bc15f8ba83d47b92227854a9d3ad1cfa5c5897a57d595b0151faef1bbf925a" }, "downloads": -1, "filename": "opencvutils-0.9.3-py2-none-any.whl", "has_sig": false, "md5_digest": "32e6070012247fe6456a0c6da9ca51df", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 23148, "upload_time": "2017-10-29T21:08:17", "url": "https://files.pythonhosted.org/packages/5e/d9/ce34e658a22a62fdefe08fff9bc6258f2c4e66356f70d61fb7e2e8fae783/opencvutils-0.9.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d789d09375bc3ed9167cd4d2da71dc47", "sha256": "7e3cf17451b6e4c411e609b13cc835eeb7071a89fcab2c548b8e2d12161c4ad8" }, "downloads": -1, "filename": "opencvutils-0.9.3-py3-none-any.whl", "has_sig": false, "md5_digest": "d789d09375bc3ed9167cd4d2da71dc47", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23145, "upload_time": "2017-10-29T21:08:19", "url": "https://files.pythonhosted.org/packages/31/2c/febf1e8dc4d91f077f45880642b5d41707cfe8a03f090fe176ab15c31fee/opencvutils-0.9.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e64596fc94ecdaecc763eee958266cef", "sha256": "1588106ef9697be84e7cbcb03a6a208e7e6ad6350c33144d016b2f37d076155d" }, "downloads": -1, "filename": "opencvutils-0.9.3.tar.gz", "has_sig": false, "md5_digest": "e64596fc94ecdaecc763eee958266cef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15147, "upload_time": "2017-10-29T21:08:20", "url": "https://files.pythonhosted.org/packages/6d/03/02dac3db8c99a637de2c1b97314ba11b553d8735199ee8fa4ec7ed512edc/opencvutils-0.9.3.tar.gz" } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "81d6defb47d0f1eb432dbd379e81e62e", "sha256": "048c3b20a8ab7351b40c5f54e2d7ed0161fded510519ea02eac3d991170200a3" }, "downloads": -1, "filename": "opencvutils-0.9.4-py2-none-any.whl", "has_sig": false, "md5_digest": "81d6defb47d0f1eb432dbd379e81e62e", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 20475, "upload_time": "2018-07-19T15:09:07", "url": "https://files.pythonhosted.org/packages/41/f6/ce9a7f4febe4296bb38b0e359a5fcb277b90154a5b43a20208ca390aaa99/opencvutils-0.9.4-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d3fdf0d652554216ea183bea268b128a", "sha256": "ee187269394224a5743fd0b4a4b4be87813cc253ab8a6e4098a54bff3ecf7b60" }, "downloads": -1, "filename": "opencvutils-0.9.4-py3-none-any.whl", "has_sig": false, "md5_digest": "d3fdf0d652554216ea183bea268b128a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 20474, "upload_time": "2018-07-19T15:09:09", "url": "https://files.pythonhosted.org/packages/ee/22/a9ce56f66a1be693f948a3c172ba6e4a2ebf40c5ab9946ab5112ad7fa227/opencvutils-0.9.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "52c49f82b3d406f187b2d5f2a60e045a", "sha256": "7e2c836e342347025e679c1c439a3697911e0c503b6d50fa92e418307bc800db" }, "downloads": -1, "filename": "opencvutils-0.9.4.tar.gz", "has_sig": false, "md5_digest": "52c49f82b3d406f187b2d5f2a60e045a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16108, "upload_time": "2018-07-19T15:09:10", "url": "https://files.pythonhosted.org/packages/d0/bb/b4458a6a305bf593ba2421fe74f36c77869239b0a4eadb06f58c90d4653b/opencvutils-0.9.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "81d6defb47d0f1eb432dbd379e81e62e", "sha256": "048c3b20a8ab7351b40c5f54e2d7ed0161fded510519ea02eac3d991170200a3" }, "downloads": -1, "filename": "opencvutils-0.9.4-py2-none-any.whl", "has_sig": false, "md5_digest": "81d6defb47d0f1eb432dbd379e81e62e", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 20475, "upload_time": "2018-07-19T15:09:07", "url": "https://files.pythonhosted.org/packages/41/f6/ce9a7f4febe4296bb38b0e359a5fcb277b90154a5b43a20208ca390aaa99/opencvutils-0.9.4-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d3fdf0d652554216ea183bea268b128a", "sha256": "ee187269394224a5743fd0b4a4b4be87813cc253ab8a6e4098a54bff3ecf7b60" }, "downloads": -1, "filename": "opencvutils-0.9.4-py3-none-any.whl", "has_sig": false, "md5_digest": "d3fdf0d652554216ea183bea268b128a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 20474, "upload_time": "2018-07-19T15:09:09", "url": "https://files.pythonhosted.org/packages/ee/22/a9ce56f66a1be693f948a3c172ba6e4a2ebf40c5ab9946ab5112ad7fa227/opencvutils-0.9.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "52c49f82b3d406f187b2d5f2a60e045a", "sha256": "7e2c836e342347025e679c1c439a3697911e0c503b6d50fa92e418307bc800db" }, "downloads": -1, "filename": "opencvutils-0.9.4.tar.gz", "has_sig": false, "md5_digest": "52c49f82b3d406f187b2d5f2a60e045a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16108, "upload_time": "2018-07-19T15:09:10", "url": "https://files.pythonhosted.org/packages/d0/bb/b4458a6a305bf593ba2421fe74f36c77869239b0a4eadb06f58c90d4653b/opencvutils-0.9.4.tar.gz" } ] }