{"id":17682096,"url":"https://github.com/ajay-dhangar/face-detector-app","last_synced_at":"2026-05-02T13:31:51.812Z","repository":{"id":234772553,"uuid":"789485103","full_name":"ajay-dhangar/face-detector-app","owner":"ajay-dhangar","description":"This is a simple face detector app that uses python and OpenCV to detect faces in an image.","archived":false,"fork":false,"pushed_at":"2024-04-20T17:36:34.000Z","size":674,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-13T01:02:12.566Z","etag":null,"topics":["face","face-detection","face-detection-app","opencv","opencv-python","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ajay-dhangar.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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},"funding":{"github":"Ajay-Dhangar","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":null}},"created_at":"2024-04-20T17:22:47.000Z","updated_at":"2024-10-18T10:21:40.000Z","dependencies_parsed_at":null,"dependency_job_id":"a72dcb9f-63ca-496f-87a9-9a544dd12343","html_url":"https://github.com/ajay-dhangar/face-detector-app","commit_stats":null,"previous_names":["ajay-dhangar/face-detector-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ajay-dhangar/face-detector-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ajay-dhangar%2Fface-detector-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ajay-dhangar%2Fface-detector-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ajay-dhangar%2Fface-detector-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ajay-dhangar%2Fface-detector-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ajay-dhangar","download_url":"https://codeload.github.com/ajay-dhangar/face-detector-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ajay-dhangar%2Fface-detector-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32536558,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-02T12:25:33.646Z","status":"ssl_error","status_checked_at":"2026-05-02T12:24:51.733Z","response_time":132,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["face","face-detection","face-detection-app","opencv","opencv-python","python"],"created_at":"2024-10-24T09:12:54.419Z","updated_at":"2026-05-02T13:31:51.789Z","avatar_url":"https://github.com/ajay-dhangar.png","language":"Python","funding_links":["https://github.com/sponsors/Ajay-Dhangar"],"categories":[],"sub_categories":[],"readme":"# Face Detector App\n\nThis is a simple face detector app that uses python and OpenCV to detect faces in an image.\n\nFor Example:\n\n![preview](./images/image.png)\n\n![image](https://github.com/Ajay-Dhangar/face-detector-app/assets/99037494/57d0b466-f0bf-41b2-9f2a-cbf89fa027dd)\n\n\n***If you like this repository, feel free to star it.***\n\n## Features\n\n- Detect faces in an image \n\n## Let's Get Started\n\n### Step 1: Fork this Repository\n\nYou can get your own fork/copy of [face-detector-app](/) by using the \u003ckbd\u003eFork\u003c/kbd\u003e button.\n\n### Step 2: Clone your fork\n\nYou need to clone (download a copy of) this repository to your local machine using:\n\n```bash\ngit clone https://github.com/Your_Username/face-detector-app.git\n```\n\nWhere `Your_Username` is your GitHub username. Here you're copying the contents of the `face-detector-app` repository on GitHub to your computer.\n\n### Step 3: Navigate to the repository\n\n```bash\ncd face-detector-app\n```\n\n### Step 4: install the required libraries\n\n```bash\npip install -r requirements.txt\n```\n\nor you can install the required libraries manually using:\n\n```bash\npip install opencv-python\n```\n\n### Step 5: Run the app\n\n```bash\npython main.py\n```\n\n![image](https://github.com/Ajay-Dhangar/face-detector-app/assets/99037494/57d0b466-f0bf-41b2-9f2a-cbf89fa027dd)\n\nCongratulations! You have successfully run the face detector app.\n\nand you can use your own image by replacing the image in the `images` folder.\n\n## Contributing\n\n### Step 1: Create a new branch\n\n```bash\ngit checkout -b YourBranchName\n```\n\n### Step 2: Make changes\n\nMake the changes that you want to make.\n\n### Step 3: Commit all the changes\n\n```bash\ngit add .\ngit commit -m \"Your commit message\"\n```\n\n### Step 4: Push the changes\n\n```bash\ngit push origin YourBranchName\n```\n\n### Step 5: Create a Pull Request\n\nGo to your repository on GitHub and create a pull request.\n\nCongratulations! You have successfully created a pull request.\n\n\n## Author\n\n- [Ajay Dhangar](https://github.com/ajay-dhangar)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fajay-dhangar%2Fface-detector-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fajay-dhangar%2Fface-detector-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fajay-dhangar%2Fface-detector-app/lists"}