{"id":15654912,"url":"https://github.com/unicodeveloper/face-detection","last_synced_at":"2026-03-01T01:32:36.642Z","repository":{"id":87983573,"uuid":"104067635","full_name":"unicodeveloper/face-detection","owner":"unicodeveloper","description":":man: :woman: An app to detect facial attributes (with focus on the eyes), on a human and append a pair of glasses or harlequin mask.","archived":false,"fork":false,"pushed_at":"2017-10-08T22:46:53.000Z","size":80,"stargazers_count":25,"open_issues_count":1,"forks_count":15,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-04-23T17:09:36.303Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"HTML","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/unicodeveloper.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":"2017-09-19T11:43:11.000Z","updated_at":"2024-05-31T18:52:16.000Z","dependencies_parsed_at":"2023-03-13T18:34:46.157Z","dependency_job_id":null,"html_url":"https://github.com/unicodeveloper/face-detection","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/unicodeveloper/face-detection","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unicodeveloper%2Fface-detection","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unicodeveloper%2Fface-detection/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unicodeveloper%2Fface-detection/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unicodeveloper%2Fface-detection/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/unicodeveloper","download_url":"https://codeload.github.com/unicodeveloper/face-detection/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unicodeveloper%2Fface-detection/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29957361,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-28T22:53:01.873Z","status":"ssl_error","status_checked_at":"2026-02-28T22:52:50.699Z","response_time":90,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":[],"created_at":"2024-10-03T12:54:51.190Z","updated_at":"2026-03-01T01:32:36.616Z","avatar_url":"https://github.com/unicodeveloper.png","language":"HTML","readme":"\n# Face Overlay App\n\u003cp align=“center”\u003e\u003ca href=“LICENSE”\u003e\u003cimg alt=“GitHub license” src=\"https://img.shields.io/github/license/laravelnigeria/website.svg\"\u003e\u003c/a\u003e\u003c/p\u003e\n\n👨 👩  An app to detect facial attributes (with focus on the eyes), on a human and append a pair of glasses or harlequin mask.\n\n\u003cdiv\u003e\n\u003cimg style=\"width:50%\" src=\"http://res.cloudinary.com/og-tech/image/upload/v1507395290/demo_a_gefjqp.png\" /\u003e\n\u003cimg style=\"width:50%\" src=\"http://res.cloudinary.com/og-tech/image/upload/v1507395294/demo_b_uerqes.png\" /\u003e\n\u003c/div\u003e\n\n## Setting things up\n\n### Clone the repository\n```sh\n$ git clone git@github.com:unicodeveloper/face-detection.git\n```\n\n### Install Dependencies \n\nBefore continuing, this app requires  [node](https://nodejs.org/en/) $ [npm](https://www.npmjs.com/) installed on your machine.\nOnce you have confirmed your node installation,\n\n- Change directory into the server directory of the app\n```sh\n$ cd face-detection/server\n```\n\n- Install npm packages\n```sh\n$ npm install\n```\n\n- Set up http server \nTo render our static html files, you could use a simple http server like [http-server](https://www.npmjs.com/package/http-server). To install run the command \n\n```sh\n$ npm install http-server -g\n```\n\n### Working with Cloudinary\nThis application is dependent on [Cloundary's API](https://cloudinary.com/).\nTo continue, you will need to [sign up](https://cloudinary.com/users/register/free) here. Once that's done, on your [console](https://cloudinary.com/console) fetch your `cloud_name`, `api_key`, `api_secret` and then add them to your `index.js` file located in the `server/` directory.\n\nNB: \n- You also need to activate [Advanced Facial Attributes](https://cloudinary.com/console/addons#adv_face) on your cloudinary account - don't worry it's 'kinda' free 😜 .\n- You need to upload the images from the `assets` directory to your [media library](https://cloudinary.com/console/media_library) and rename them to `glasses` and `harlequinmask` since those are the two masks we are considering\n\n## Running things\nTo run the app, in the root directory of our app we start our backend server with this command\n```sh\n$ node server\n```\n\nYou'll get a response like \n```sh\nListening on localhost:3333\n```\n\nThis means your backend server is running on `http://localhost:3333/`\n\nYou also need to run your `http-server` by using the command\n```sh\n$ http-server\n```\n \nOnce that's done, you get a response like \n```sh\nStarting up http-server, serving ./public\nAvailable on:\n  http://127.0.0.1:8080\n  http://172.20.10.9:8080\n```\n\nNow you can navigate to `http://127.0.0.1:8080/` to see the app at work 😇\n\nLicense\n----\n\nMIT","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funicodeveloper%2Fface-detection","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Funicodeveloper%2Fface-detection","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funicodeveloper%2Fface-detection/lists"}