| .. | ||
| AIFotoONLUS.Console | ||
| AIFotoONLUS.Core | ||
| AIFotoONLUS.WPF | ||
| README.md | ||
AIFotoONLUS (.NET) — scaffold
This workspace contains the initial scaffold for migrating the YOLO-based number recognition Python script to .NET 10.
Projects:
AIFotoONLUS.Core— core inference library (OpenCvSharp)AIFotoONLUS.Console— console batch runnerAIFotoONLUS.WPF— simple WPF demo frontend
Quick build & run (Windows):
- Ensure .NET 10 SDK is installed.
- From
srcrun:dotnet restoredotnet build
- Copy the
models/folder (contains detection/recognition .cfg and .weights) to thesrcoutput folder or run the apps from repository root somodels/is accessible.
Console example: dotnet run --project src\AIFotoONLUS.Console -- -d "..\images\onlus" -c result.csv
Notes:
- Core engine currently loads Darknet models and scaffolds the detection/recognition pipeline.
- Parsing of network outputs (YOLO postprocessing) and recognition logic will be implemented next.
- WPF app is a minimal demo (code-behind). We'll replace with MVVM as we iterate.