feat: initial working POC

This commit is contained in:
Stevan Freeborn
2025-02-06 23:26:58 -06:00
commit 651869c27f
7 changed files with 722 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.ML.OnnxRuntime" Version="1.20.1" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.6" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="modnet.onnx" />
<EmbeddedResource Include="rmbg.onnx" />
<EmbeddedResource Include="u2net.onnx" />
</ItemGroup>
</Project>