8 lines
314 B
C#
8 lines
314 B
C#
|
|
using OpenCvSharp;
|
||
|
|
|
||
|
|
namespace AIFotoONLUS.Core
|
||
|
|
{
|
||
|
|
public record DetectedRegion(Rect BoundingBox, float Confidence, int ClassId, double CenterX);
|
||
|
|
public record RecognitionResult(string Text, Rect BoundingBox, double Confidence);
|
||
|
|
public record ImageResult(string FileName, string Text, string FilePath);
|
||
|
|
}
|