轮胎外观检测添加思谋语义分割模型检测工具
C3204
2026-03-30 7ceaa09e4baefe84bad268b56bbf8b8f3f1d0f99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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
    {
        /// <summary>
        /// 二次判定面积阈值
        /// </summary>
        public Int32 AreaThreshold;
        /// <summary>
        /// 二次判定长边阈值
        /// </summary>
        public double LongSideThreshold;
        /// <summary>
        /// 二次判定短边阈值
        /// </summary>
        public double ShortSideThreshold;
        /// <summary>
        /// 二次判定置信度阈值
        /// </summary>
        public double ClassesScoreThreshold;
    }
}