{"id":15933513,"url":"https://github.com/thebino/facegallery","last_synced_at":"2026-05-19T10:04:59.993Z","repository":{"id":117650725,"uuid":"271484861","full_name":"thebino/FaceGallery","owner":"thebino","description":"🤩 FaceGallery is an open source application to manage images within included faces.","archived":false,"fork":false,"pushed_at":"2020-07-10T17:18:07.000Z","size":1944,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-23T20:12:52.506Z","etag":null,"topics":["facedetection"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"cc-by-sa-4.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thebino.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE.md","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":"2020-06-11T07:49:43.000Z","updated_at":"2024-10-27T12:30:00.000Z","dependencies_parsed_at":null,"dependency_job_id":"a95e03c4-d5e5-46aa-8968-7639b2de327d","html_url":"https://github.com/thebino/FaceGallery","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/thebino/FaceGallery","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thebino%2FFaceGallery","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thebino%2FFaceGallery/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thebino%2FFaceGallery/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thebino%2FFaceGallery/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thebino","download_url":"https://codeload.github.com/thebino/FaceGallery/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thebino%2FFaceGallery/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272996306,"owners_count":25028103,"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","status":"online","status_checked_at":"2025-08-31T02:00:09.071Z","response_time":79,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["facedetection"],"created_at":"2024-10-07T02:40:34.156Z","updated_at":"2026-05-19T10:04:59.968Z","avatar_url":"https://github.com/thebino.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FaceGallery\n\nFaceGallery is an open source application to manage images within included faces.\n\nClustering images by faces is a common thing in our daily lives. On Smartphones,\nsocial media platforms even on CCTV.\n\n#### Privacy\n**None of your data eg. faces, names or images are used outside your computer or network.**\n\nAs distinguished from many other applications, this app focuses on privacy.\n\n#### Contribution\nContributions to the codebase are welcome and we would love to hear back from your app experience.\n\n#### Technical\nFacedetection is archived by the *MTCNN* \u003csup\u003e1\u003c/sup\u003e method.\nDescribed 2016 in the Paper \n    [Joint Face Detection and Alignment Using Multitask Cascaded Convolutional Networks](https://arxiv.org/abs/1604.02878) \nby [Kaipeng Zhang](http://kpzhang93.github.io/)\n\nThe implementation was extracted from this [MTCNN project](https://github.com/OAID/FaceDetection)\n\n\u003csup\u003e1\u003c/sup\u003e Multi-Task Cascaded Convolutional Neural Network\n\n## Table of contents\n\nSetup:\n\n  * \u003ca href='#installation'\u003eInstallation\u003c/a\u003e\u003cbr\u003e\n\nDevelopment:\n\n  * \u003ca href='#preparation'\u003ePreparation\u003c/a\u003e\u003cbr\u003e\n  * \u003ca href='#build'\u003eBuild\u003c/a\u003e\u003cbr\u003e\n  * \u003ca href='https://github.com/thebino/FaceGallery/issues'\u003eKnown Issues\u003c/a\u003e\u003cbr\u003e\n\nLicense:\n  * \u003ca href='#license'\u003eLicense\u003c/a\u003e\u003cbr\u003e\n\n\n## Installation\n1. Download the [latest release](https://github.com/thebino/FaceGallery/releases)\n2. Run the application\n\n## Development\n#### Preparation\n1. Download and install [opencv](https://opencv.org/releases/).\n2. [tensorflow C API](https://www.tensorflow.org/install/lang_c) will be downloaded automatically by cmake.\n\n#### Build\nFor mac or linux builds\n```shell script\n\u003e cmake . -B build\n\u003e cmake --build build\n```\n\nFor windows builds\n```shell script\ncmake -G \"Visual Studio 15 2017\" -A x64 ..\ncmake --build . --config Debug -b build\n```\n\n#### Flow\nThis app is separated in multiple steps:\n\n1. Face Detection\nLocating faces on the images\n2. Face Recognition\nCompare faces with alreday known ones\n3. Facial expression\nDescripe the persons mood\n4. Object detection\nTag the surroundings\n\n\n## License\n\u003ca rel=\"license\" href=\"http://creativecommons.org/licenses/by-sa/4.0/\"\u003e\u003cimg alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-sa/4.0/88x31.png\" /\u003e\u003c/a\u003e\u003cbr /\u003eThis work is licensed under a \u003ca rel=\"license\" href=\"http://creativecommons.org/licenses/by-sa/4.0/\"\u003eCreative Commons Attribution-ShareAlike 4.0 International License\u003c/a\u003e.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthebino%2Ffacegallery","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthebino%2Ffacegallery","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthebino%2Ffacegallery/lists"}