You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel.ML/DNN/Models/ImagePrediction.cs

12 lines
346 B

namespace ZeroLevel.ML.DNN.Models
{
public sealed class ImagePrediction
{
public string Name { get; set; } = null!;
public string Path { get; set; } = null!;
public int Width { get; set; }
public int Height { get; set; }
public YoloPredictionWithGeo[] Predictions { get; set; } = null!;
}
}

Powered by TurnKey Linux.