using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LB_VisionProcesses.Alogrithms.BigModel.Segment
{
[Serializable]
public class SegmentParam
{
///
/// 二次判定面积阈值
///
public Int32 AreaThreshold;
///
/// 二次判定长边阈值
///
public double LongSideThreshold;
///
/// 二次判定短边阈值
///
public double ShortSideThreshold;
///
/// 二次判定置信度阈值
///
public double ClassesScoreThreshold;
}
}