{"id":16461533,"url":"https://github.com/meqdaddev/detectors-world","last_synced_at":"2026-02-28T07:32:12.339Z","repository":{"id":65826203,"uuid":"600192256","full_name":"MeqdadDev/detectors-world","owner":"MeqdadDev","description":"Detectors World... See the World Through Code. Build Computer Vision applications in easy and handy way.","archived":false,"fork":false,"pushed_at":"2024-03-27T20:48:37.000Z","size":20859,"stargazers_count":5,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-04-28T10:42:31.191Z","etag":null,"topics":["computer-vision","deep-learning","face-detection","face-mesh-detection","face-recognition","hand-detection","mediapipe","mediapipe-facemesh","mediapipe-hands","mediapipe-pose","opencv","pose-estimation","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MeqdadDev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-02-10T19:46:00.000Z","updated_at":"2024-04-28T10:42:31.191Z","dependencies_parsed_at":"2024-10-11T11:08:34.386Z","dependency_job_id":"a682529a-1f9c-4702-bc11-c678becdb69a","html_url":"https://github.com/MeqdadDev/detectors-world","commit_stats":{"total_commits":10,"total_committers":1,"mean_commits":10.0,"dds":0.0,"last_synced_commit":"4f5f255fb59eb2942cf57b27cacea61d1157ed28"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/MeqdadDev/detectors-world","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MeqdadDev%2Fdetectors-world","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MeqdadDev%2Fdetectors-world/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MeqdadDev%2Fdetectors-world/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MeqdadDev%2Fdetectors-world/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MeqdadDev","download_url":"https://codeload.github.com/MeqdadDev/detectors-world/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MeqdadDev%2Fdetectors-world/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265175567,"owners_count":23722661,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["computer-vision","deep-learning","face-detection","face-mesh-detection","face-recognition","hand-detection","mediapipe","mediapipe-facemesh","mediapipe-hands","mediapipe-pose","opencv","pose-estimation","python"],"created_at":"2024-10-11T11:08:31.726Z","updated_at":"2026-02-28T07:32:12.287Z","avatar_url":"https://github.com/MeqdadDev.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Detectors World\n[![PyPI](https://img.shields.io/pypi/v/detectors-world)](https://pypi.org/project/detectors-world/)\n[![Downloads](https://static.pepy.tech/badge/detectors-world)](https://pepy.tech/project/detectors-world)\n[![MIT License](https://img.shields.io/badge/License-MIT-green.svg)](https://choosealicense.com/licenses/mit/)\n\n\u003cp align=\"center\"\u003e\n\u003cpicture\u003e\n  \u003cimg alt=\"Detectors World Logo\" src=\"Detectors-World-Logo.png\" width=\"50%\" hight=\"50%\" \u003e\n\u003c/picture\u003e\n\u003c/p\u003e\n\nDetectors World is a Python package created for building Computer Vision applications in easy and handy way.\n\nDeveloped by [@MeqdadDev](https://www.github.com/MeqdadDev)\n\n\n## Available Computer Vision Detectors\nThe available detectors in Detectors World package are: \n- Hand Detection\n- Face Detection\n- Pose Detection\n- Face Mesh Detection\n\nMore detectors will be added in the next releases. Check out contribution guides below.\n\n\n## Documentation\n\nThe complete documentation will be added soon....\n\n\n## Dependencies\n\nDetectors World dependencies are:\n\n```bash\nopencv-python\nmediapipe\n```\n\n## Installation\n\nInstall detectors world package with pip\n\n```bash\npip install detectors_world\n```\n\n\n## Run Detectors 🚀🚀\n\n## Hand Detector ✋\n\n\u003cp align=\"center\"\u003e\n\u003cimg src=\"assets/hand-detector.gif\" width=50% height=40%\u003e\n\u003c/p\u003e\n\nHand detector examples with OpenCV:\n\n#### Example 1:\n\n```python\nfrom detectors_world import DetectorCreator\nimport cv2 as cv\n\ncap = cv.VideoCapture(0)\n\ncreator = DetectorCreator()\nhand = creator.getDetector(\"hand\")\n\nwhile True:\n    status, img = cap.read()\n    hand.detect(img, drawOnHand=True)\n    cv.imshow(\"Hand Detection\", img)\n    cv.waitKey(1)\n```\n\n#### Example 2:\n\n```python\nfrom detectors_world import DetectorCreator\nimport cv2 as cv\n\ncap = cv.VideoCapture(0)\n\ncreator = DetectorCreator()\nhand = creator.getDetector(\"hand\")\n\nwhile True:\n    status, img = cap.read()\n    hand.detect(img, drawOnHand=True)\n    landmarks = hand.locate(img, drawOnHand=True, handsNumber=1)\n    cv.imshow(\"Hand Detection\", img)\n    cv.waitKey(1)\n```\n\n### Pose Detector 💪\n\n\u003cp align=\"center\"\u003e\n\u003cimg src=\"assets/pose-detection.gif\" width=50% height=40%\u003e\n\u003c/p\u003e\n\nPose detector examples with OpenCV:\n\n#### Example 1:\n\n```python\nfrom detectors_world import DetectorCreator\nimport cv2 as cv\n\ncap = cv.VideoCapture(0)\n\ncreator = DetectorCreator()\npose = creator.getDetector(\"pose\")\n\nwhile True:\n    status, img = cap.read()\n    pose.detect(img, drawOnPose=True)\n    cv.imshow(\"Pose Detection\", img)\n    cv.waitKey(1)\n```\n\n### Face Detector 😃\n\n\u003cp align=\"center\"\u003e\n\u003cimg src=\"assets/face-detection.gif\" width=50% height=40%\u003e\n\u003c/p\u003e\n\nFace detector examples with OpenCV:\n\n#### Example 1:\n\n```python\nfrom detectors_world import DetectorCreator\nimport cv2 as cv\n\ncap = cv.VideoCapture(0)\n\ncreator = DetectorCreator()\nface = creator.getDetector(\"face\")\n\nwhile True:\n    status, img = cap.read()\n    face.detect(img, drawOnFace=True)\n    cv.imshow(\"Face Detection\", img)\n    cv.waitKey(1)\n```\n\n#### Example 2:\n\n```python\nfrom detectors_world import DetectorCreator\nimport cv2 as cv\n\ncap = cv.VideoCapture(0)\n\ncreator = DetectorCreator()\nface = creator.getDetector(\"face\")\n\nwhile True:\n    status, img = cap.read()\n    face.detect(img, drawOnFace=False)\n    landmarks = face.locate(img, drawOnFace=True)\n    cv.imshow(\"Face Detection\", img)\n    cv.waitKey(1)\n```\n\n### Face Mesh Detector 🤖\n\n\u003cp align=\"center\"\u003e\n\u003cimg src=\"assets/facemesh-detection.gif\" width=50% height=40%\u003e\n\u003c/p\u003e\n\nFace mesh detector examples with OpenCV:\n\n#### Example 1:\n\n```python\nfrom detectors_world import DetectorCreator\nimport cv2 as cv\n\ncap = cv.VideoCapture(0)\n\ncreator = DetectorCreator()\nfacemesh = creator.getDetector(\"face_mesh\")\n\nwhile True:\n    status, img = cap.read()\n    facemesh.detect(img, drawOnFace=True)\n    cv.imshow(\"Facemesh Detection\", img)\n    cv.waitKey(1)\n```\n\n\n## Contributing\n\nPull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.\n\nFor new projects/examples, please make sure you've tested your code in real environment. And to avoid duplications, please take a sneak peek on the uploaded projects before making your PR.\n\n## 🔗 Find me on\n[![linkedin](https://img.shields.io/badge/linkedin-0A66C2?style=for-the-badge\u0026logo=linkedin\u0026logoColor=white)](https://www.linkedin.com/in/meqdad-darwish/)\n\n[![twitter](https://img.shields.io/badge/twitter-1DA1F2?style=for-the-badge\u0026logo=twitter\u0026logoColor=white)](https://twitter.com/MeqdadDev)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeqdaddev%2Fdetectors-world","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmeqdaddev%2Fdetectors-world","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeqdaddev%2Fdetectors-world/lists"}