{ "info": { "author": "", "author_email": "", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: Education", "Intended Audience :: Information Technology", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Operating System :: POSIX :: Linux", "Programming Language :: C++", "Programming Language :: Python :: 3", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Image Recognition", "Topic :: Software Development" ], "description": "# Rating system using computer vision\n\n## Introduction\n\nRateMe is a neural network that allows you to recognize gestures of thumb up and thumb down.\nThe algorithm can be embedded in your project and automate the process of evaluation of something or someone.\n\n![](gifs/Algorithm.gif)\n\nFor example, using Rate Me you can:\n\n+ Rate music on the YouTube Music service, when you are uncomfortable with clicking buttons\n\n ![](gifs/YouTube.gif)\n\n+ Count the votes in a beauty contest to determine the winner\n\n ![](gifs/Street.gif)\n\n+ Rate drinks and meals during their tasting\n\n ![](gifs/Wine.gif)\n\n## Technical part\n\n### Dependencies\n\n`opencv-contrib-python`, `numpy`\n\n`matplotlib`, `jupyter` for jupyter-notebook\n\n```bash\npip3 install opencv-contrib-python numpy\n```\n\n### Usage\n\nOpen `Test_RateMe.ipynb` to test RateMe on example images \n(for that you need to start `jupyter-notebook`, it will open window in your browser, where you need to select `Test_RateMe.ipynb`).\n\nFor example of realtime detection run `detect_on_webcam.py`.\n\nMinimal working example:\n\n```python\nimport cv2\nfrom RateMe.utils import RateMe\n\nimg = cv2.imread('test_imgs/like.jpg')\nlabel = net.decode(img)\n```\n\n### Description\n\nRateMe is based on [tiny-YOLOv3](https://pjreddie.com/darknet/yolo/) architecture. \n\nIt's accuracy of thumb up/down gesture recognition is calculated as mean average precision (mAP@0.25) = 0.851941, or 85.19%; average IoU = 73.89%\n\nThe neural network has been trained on ~3K images (taken from different angles photos of people showing their thumbs or not).\nImages were labeled using the [labelImg](https://github.com/tzutalin/labelImg) program.\n\nClass labels: 0 -- \"Like (thumb up)\", 1 -- \"Dislike (thumb down)\"\n\n### Speed\n\nFull pipeline speed is 6-7 FPS on Intel(R) Core(TM) i5-4300M CPU @ 2.60GHz.\n\n~100ms on frame grabbing\n\n~100ms on neural network inference\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/heyml/rateme", "keywords": "", "license": "MIT", "maintainer": "heyML", "maintainer_email": "", "name": "rateme", "package_url": "https://pypi.org/project/rateme/", "platform": "", "project_url": "https://pypi.org/project/rateme/", "project_urls": { "Homepage": "https://github.com/heyml/rateme" }, "release_url": "https://pypi.org/project/rateme/0.1.0/", "requires_dist": [ "numpy", "opencv-python" ], "requires_python": "", "summary": "RateMe is a neural network that allows you to recognize gestures of thumb up and thumb down", "version": "0.1.0" }, "last_serial": 5480726, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "1c387bccedbc0a4f8c74e49c9b9a5642", "sha256": "85e43c8328d3f0cc5784353c8e412047a4cf471deef79bddfeca555f3488af86" }, "downloads": -1, "filename": "rateme-0.1.0-cp3-none-any.whl", "has_sig": false, "md5_digest": "1c387bccedbc0a4f8c74e49c9b9a5642", "packagetype": "bdist_wheel", "python_version": "cp3", "requires_python": null, "size": 32192706, "upload_time": "2019-07-03T10:50:31", "url": "https://files.pythonhosted.org/packages/6d/6d/1dda63022e0dae87615b7a1af5172f0c0c3547948de4769d977064143891/rateme-0.1.0-cp3-none-any.whl" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "1c387bccedbc0a4f8c74e49c9b9a5642", "sha256": "85e43c8328d3f0cc5784353c8e412047a4cf471deef79bddfeca555f3488af86" }, "downloads": -1, "filename": "rateme-0.1.0-cp3-none-any.whl", "has_sig": false, "md5_digest": "1c387bccedbc0a4f8c74e49c9b9a5642", "packagetype": "bdist_wheel", "python_version": "cp3", "requires_python": null, "size": 32192706, "upload_time": "2019-07-03T10:50:31", "url": "https://files.pythonhosted.org/packages/6d/6d/1dda63022e0dae87615b7a1af5172f0c0c3547948de4769d977064143891/rateme-0.1.0-cp3-none-any.whl" } ] }