mirror of https://github.com/ogoun/Zero.git
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.
12 lines
346 B
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!;
|
|
}
|
|
}
|