AI.Facial.AgeAndGender
25.3.16
dotnet add package AI.Facial.AgeAndGender --version 25.3.16
NuGet\Install-Package AI.Facial.AgeAndGender -Version 25.3.16
<PackageReference Include="AI.Facial.AgeAndGender" Version="25.3.16" />
<PackageVersion Include="AI.Facial.AgeAndGender" Version="25.3.16" />
<PackageReference Include="AI.Facial.AgeAndGender" />
paket add AI.Facial.AgeAndGender --version 25.3.16
#r "nuget: AI.Facial.AgeAndGender, 25.3.16"
#addin nuget:?package=AI.Facial.AgeAndGender&version=25.3.16
#tool nuget:?package=AI.Facial.AgeAndGender&version=25.3.16
AI.Facial.AgeAndGender
AI.Facial.AgeAndGender is a .NET library for analyzing facial attributes, including age and gender. It seamlessly integrates with C#.NET, providing efficient and secure facial analysis with embedded AI models. Ideal for chatbots, customer insights, security, and healthcare applications.
🚀 Features
- Age and Gender Detection.
- Optimized for .NET – Fully compatible with .NET 6/8/9.
- Easy Integration – Works seamlessly with ASP.NET Web APIs, Windows Application, allowing quick integration into existing projects.
- Supports multiple input formats: URL, Base64, File Stream
📦 Installation
You can install this library via NuGet Package Manager:
dotnet add package AI.Facial.AgeAndGender
📦 Mandatory ingredients
- If your server runs windows operating system
dotnet add package Emgu.CV.runtime.windows
- If your server runs ubuntu operating system
dotnet add package Emgu.CV.runtime.ubuntu-x64
⚡ Usage
For example
1️⃣ Analyze Age from an image URL
using AI.Facial.AgeAndGender;
var analyzer = new AgeAnalyzer();
var result = await analyzer.AnalyzeAgeFromUrlAsync("https://example.com/image.jpg");
Console.WriteLine($"Age: {result}");
2️⃣ Analyze Gender from a Base64 image string
var base64Image = "iVBORw0KGgoAAAANSUhEUgAA...";
var result = await analyzer.AnalyzeGenderFromBase64Async(base64Image);
Console.WriteLine($"Gender: {result}");
3️⃣ Analyze Age and Gender from a file stream
using var fileStream = File.OpenRead("image.jpg");
var ageResult = await analyzer.AnalyzeAgeFromStreamAsync(fileStream);
var genderResult = await analyzer.AnalyzeGenderFromStreamAsync(fileStream);
Console.WriteLine($"Age: {ageResult} - Gender: {genderResult}");
Contact
For any questions, feel free to contact me or create an issue in the repository.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
-
net6.0
- Emgu.CV (>= 4.10.0.5680)
- Microsoft.AspNetCore.Http (>= 2.3.0)
- Microsoft.ML.OnnxRuntime (>= 1.21.0)
- Newtonsoft.Json (>= 13.0.3)
-
net8.0
- Emgu.CV (>= 4.10.0.5680)
- Microsoft.AspNetCore.Http (>= 2.3.0)
- Microsoft.ML.OnnxRuntime (>= 1.21.0)
- Newtonsoft.Json (>= 13.0.3)
-
net9.0
- Emgu.CV (>= 4.10.0.5680)
- Microsoft.AspNetCore.Http (>= 2.3.0)
- Microsoft.ML.OnnxRuntime (>= 1.21.0)
- Newtonsoft.Json (>= 13.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
25.3.16 | 150 | 3/16/2025 |