{"id":22400041,"url":"https://github.com/regulaforensics/facesdk-web-csharp-client","last_synced_at":"2025-07-31T14:32:21.166Z","repository":{"id":40406522,"uuid":"283497624","full_name":"regulaforensics/FaceSDK-web-csharp-client","owner":"regulaforensics","description":null,"archived":false,"fork":false,"pushed_at":"2025-06-04T16:00:59.000Z","size":750,"stargazers_count":4,"open_issues_count":4,"forks_count":3,"subscribers_count":5,"default_branch":"develop","last_synced_at":"2025-06-04T17:04:36.563Z","etag":null,"topics":["face-matching","face-recognition","nuget"],"latest_commit_sha":null,"homepage":null,"language":"C#","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/regulaforensics.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":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2020-07-29T12:49:41.000Z","updated_at":"2025-05-12T08:54:59.000Z","dependencies_parsed_at":"2023-01-22T22:15:43.853Z","dependency_job_id":"df033861-5779-4291-b57a-eb1b7c8cd82e","html_url":"https://github.com/regulaforensics/FaceSDK-web-csharp-client","commit_stats":null,"previous_names":[],"tags_count":22,"template":false,"template_full_name":null,"purl":"pkg:github/regulaforensics/FaceSDK-web-csharp-client","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/regulaforensics%2FFaceSDK-web-csharp-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/regulaforensics%2FFaceSDK-web-csharp-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/regulaforensics%2FFaceSDK-web-csharp-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/regulaforensics%2FFaceSDK-web-csharp-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/regulaforensics","download_url":"https://codeload.github.com/regulaforensics/FaceSDK-web-csharp-client/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/regulaforensics%2FFaceSDK-web-csharp-client/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268057168,"owners_count":24188616,"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-07-31T02:00:08.723Z","response_time":66,"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":["face-matching","face-recognition","nuget"],"created_at":"2024-12-05T08:11:03.578Z","updated_at":"2025-07-31T14:32:21.158Z","avatar_url":"https://github.com/regulaforensics.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Regula.FaceSDK.WebClient - the C# library for the Regula FaceSDK Web API 3.0+\n\n[![NuGet version (Regula.FaceSDK.WebClient)](https://img.shields.io/nuget/v/Regula.FaceSDK.WebClient.svg?style=flat-square)](https://www.nuget.org/packages/Regula.FaceSDK.WebClient/)\n[![OpenAPI](https://img.shields.io/badge/OpenAPI-defs-0a8c42?style=flat-square)](https://github.com/regulaforensics/FaceSDK-web-openapi)\n\n\nFace recognition as easy as reading two bytes.\n\n - Face Matching - Compare the person holding the ID to the person pictured in the ID document (1:1)\n - Face Recognition - Find the person by his or her photo in databases / lists (1:N)\n - Liveness Detection - Perform liveness check using a selfie taken with the user’s smartphone.\n\nIf you have any problems with or questions about this client, please contact us\nthrough a [GitHub issue](https://github.com/regulaforensics/FaceSDK-web-csharp-client/issues).\nYou are invited to contribute [new features, fixes, or updates](https://github.com/regulaforensics/FaceSDK-web-csharp-client/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22), large or small; We are always thrilled to receive pull requests, and do our best to process them as fast as we can. See [dev guide](./dev.md).\n\n\n## Frameworks supported\n\n- .NET Standard 2.0\n- .NET Framework 4.6.1 or later\n- .Net Core 2.0 or later\n\n## Install package\n`Regula.FaceSDK.WebClient` is on the NuGet Package Index:\n\n```bash\nPM\u003e Install-Package Regula.FaceSDK.WebClient -Version 5.2.0\n```\n\n## Example of Face Matching\n\nPerforming request:\n\n```csharp\nvar sdk = new FaceSdk(apiBasePath);\n\nvar face1 = File.ReadAllBytes(\"face1.jpg\");\nvar face2 = File.ReadAllBytes(\"face2.jpg\");\n\nvar matchImage1 = new MatchImage(data: face1, type: ImageSource.LIVE);\nvar matchImage2 = new MatchImage(data: face1, type: ImageSource.DOCUMENT_RFID);\nvar matchImage3 = new MatchImage(data: face2, type: ImageSource.LIVE);\n\nvar matchingRequest = new MatchRequest(tag: Guid.NewGuid().ToString(),\n    thumbnails:false, images:new List\u003cMatchImage\u003e {matchImage1, matchImage2, matchImage3}\n);\n\nvar matchingResponse = sdk.MatchingApi.Match(matchingRequest);\n```\n\nParsing results:\n```csharp\nforeach (var comparison in matchingResponse.Results)\n   Console.WriteLine(\"pair({0}, {1}) similarity: {2}\",\n       comparison.FirstIndex, comparison.SecondIndex, comparison.Similarity);\n```\n\n\nYou can find this sample in [the example](https://github.com/regulaforensics/FaceSDK-web-csharp-client/tree/master/src/Regula.FaceSDK.NetCoreExample).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fregulaforensics%2Ffacesdk-web-csharp-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fregulaforensics%2Ffacesdk-web-csharp-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fregulaforensics%2Ffacesdk-web-csharp-client/lists"}