{"id":19331370,"url":"https://github.com/andriykalashnykov/go-faces-http","last_synced_at":"2026-02-10T01:19:02.100Z","repository":{"id":259062651,"uuid":"875088539","full_name":"AndriyKalashnykov/go-faces-http","owner":"AndriyKalashnykov","description":"Face detection HTTP microservice based on dlib","archived":false,"fork":false,"pushed_at":"2026-01-28T20:43:55.000Z","size":102162,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-29T02:52:07.156Z","etag":null,"topics":["dlib","dlib-face-detection","dlib-face-recognition","dlib-library","go","golang"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"cc0-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AndriyKalashnykov.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-10-19T04:28:58.000Z","updated_at":"2026-01-28T20:43:58.000Z","dependencies_parsed_at":"2025-12-03T00:03:50.188Z","dependency_job_id":null,"html_url":"https://github.com/AndriyKalashnykov/go-faces-http","commit_stats":null,"previous_names":["andriykalashnykov/go-faces-http"],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/AndriyKalashnykov/go-faces-http","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndriyKalashnykov%2Fgo-faces-http","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndriyKalashnykov%2Fgo-faces-http/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndriyKalashnykov%2Fgo-faces-http/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndriyKalashnykov%2Fgo-faces-http/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AndriyKalashnykov","download_url":"https://codeload.github.com/AndriyKalashnykov/go-faces-http/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndriyKalashnykov%2Fgo-faces-http/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29288146,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-09T21:57:15.303Z","status":"ssl_error","status_checked_at":"2026-02-09T21:57:11.537Z","response_time":56,"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":["dlib","dlib-face-detection","dlib-face-recognition","dlib-library","go","golang"],"created_at":"2024-11-10T02:39:49.759Z","updated_at":"2026-02-10T01:19:02.095Z","avatar_url":"https://github.com/AndriyKalashnykov.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Hits](https://hits.sh/github.com/AndriyKalashnykov/go-faces-http.svg?view=today-total\u0026style=plastic)](https://hits.sh/github.com/AndriyKalashnykov/go-faces-http/)\n[![License: CC0](https://img.shields.io/badge/License-CC0-brightgreen.svg)](https://creativecommons.org/publicdomain/zero/1.0/)\n[![Renovate enabled](https://img.shields.io/badge/renovate-enabled-brightgreen.svg)](https://app.renovatebot.com/dashboard#github/AndriyKalashnykov/go-faces-http)\n# go-faces-http\n\nFace detection HTTP microservice based on [`dlib`](https://github.com/davisking/dlib-models).\n\n## Installation\n\nPortable statically-linked binary for Linux AMD64 is available\non [releases](https://github.com/AndriyKalashnykov/go-faces-http/releases).\n\n```\nwget https://github.com/AndriyKalashnykov/go-faces-http/releases/download/latest/linux_amd64.tar.gz \u0026\u0026 tar xf linux_amd64.tar.gz \u0026\u0026 rm linux_amd64.tar.gz\n./faces -h\n```\n\nIt is also available as a docker image.\n\n```\ndocker run --rm -p 8011:80 ghcr.io/andriykalashnykov/go-faces-http:v0.0.9\n```\n\nIf you want to build the app from source, please follow the instructions on\n[dependency setup](https://github.com/Kagami/go-face?tab=readme-ov-file#requirements).\n\n## Usage\n\n```\n./faces -h\nUsage of ./faces:\n  -listen string\n        listen address (default \"localhost:8011\")\n```\n\nStart server.\n\n```\n./faces\n2024/01/15 23:44:22 recognizer init 424.357089ms\n2024/01/15 23:44:22 http://localhost:80/docs\n```\n\nSend request.\n\n```\nmkdir ~/projects \u0026\u0026 cd ~/projects\ngit clone https://github.com/AndriyKalashnykov/go-faces-http\ncd ~/projects/go-faces-http\n\ncurl -X 'POST' \\\n  'http://localhost:8011/image' \\\n  -H 'accept: application/json' \\\n  -H 'Content-Type: multipart/form-data' \\\n  -F 'image=@person.jpg;type=image/jpeg'\n```\n\n```json\n{\n  \"elapsedSec\": 2.373028184,\n  \"found\": 4,\n  \"faces\": [\n    {\n      \"Rectangle\": {\n        \"Min\": {\n          \"X\": 584,\n          \"Y\": 1228\n        },\n        \"Max\": {\n          \"X\": 1029,\n          \"Y\": 1673\n        }\n      },\n      \"Descriptor\": [\n        -0.122200325,\n        0.10511437,\n        0.05358115,\n        0.011272355,\n        -0.09460048,\n        \"............. cut here ...........\"\n      ]\n    }\n  ]\n}\n```\n\nThis repo contains models, that were created by [Davis King dlib-models](https://github.com/davisking/dlib-models) and are\nlicensed in the public domain or under CC0 1.0 Universal. See [LICENSE](./LICENSE).\n\n### References\n\n* [Building a platform-specific executable with Docker Image and uploading to GiHub releases](https://dev.to/vearutop/building-a-portable-face-recognition-application-with-go-and-dlib-12p1)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandriykalashnykov%2Fgo-faces-http","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandriykalashnykov%2Fgo-faces-http","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandriykalashnykov%2Fgo-faces-http/lists"}