AIFotoOnlus/src/AIFotoONLUS.Core/ProcessingStats.cs
MaddoScientisto 769afc08fb Initial .NET scaffold: Core, Console, WPF projects
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.
2026-02-15 15:16:56 +01:00

4 lines
126 B
C#

namespace AIFotoONLUS.Core
{
public record ProcessingStats(int TotalFiles, int ProcessedFiles, double ImagesPerSecond);
}