Introduced solution structure for AIFotoONLUS migration to .NET. Added Core library with YOLO-based detection/recognition engine using OpenCvSharp, Console batch runner, and WPF demo frontend with MVVM. Implemented model loading, directory processing, progress reporting, and preferences. Added README with build/run instructions.
1,011 B
1,011 B
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.