using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CCDCount.MODEL.ShuLiModel
{
public class BoundingRectangleMdoel
{
///
/// 外接矩形全部点
///
public List points { get; set; }
///
/// 外接矩形中心点
///
public Point CenterPoint { get; set; }
///
/// 外接矩形高的两个端点
///
public List HeightPoints { get; set; }
///
/// 外接矩形宽的两个端点
///
public List WidthPoints { get; set; }
///
/// 外接矩形宽
///
public double Width { get; set; }
///
/// 外接矩形高
///
public double Height { get; set; }
///
/// 角度
///
public double Angle { get; set; }
///
/// 是否有内凹
///
public bool hasSignificantConcavity { get; set; }
///
/// 内凹程度
///
public double concavityRatio { get; set; }
}
public class MaxLengthModel
{
public double MaxLength { get; set; }
public Point Point1 { get; set; }
public int Point1Index { get; set; }
public Point Point2 { get; set; }
public int Point2Index { get; set; }
}
}