16 lines
378 B
C#
16 lines
378 B
C#
namespace Autolabor.Benz.ObstacleDetection.DataType
|
|
{
|
|
|
|
public class RectRoiSettings
|
|
{
|
|
public RectRoi[] RectRois { get; set; }
|
|
}
|
|
|
|
public struct RectRoi
|
|
{
|
|
public double LeftUpX { get; set; }
|
|
public double LeftUpY { get; set; }
|
|
public double RightDownX { get; set; }
|
|
public double RightDownY { get; set; }
|
|
}
|
|
} |