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.NN/Architectures/Yolo5.cs

18 lines
374 B

namespace ZeroLevel.NN.Architectures
{
internal class Yolo5
: SSDNN
{
public Yolo5(string modelPath, int width, int height)
: base(modelPath)
{
this.InputH = height;
this.InputW = width;
}
public int InputW { private set; get; }
public int InputH { private set; get; }
}
}

Powered by TurnKey Linux.