轮胎外观检测添加思谋语义分割模型检测工具
C3204
2026-03-30 06c627ec032b3f3876fd7db8a3ff0ff1a6614fa2
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
namespace LB_VisionProcesses.Processes
{
    partial class RecordControl
    {
        /// <summary> 
        /// 必需的设计器变量。
        /// </summary>
        private System.ComponentModel.IContainer components = null;
 
        /// <summary> 
        /// 清理所有正在使用的资源。
        /// </summary>
        /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }
 
        #region 组件设计器生成的代码
 
        /// <summary> 
        /// 设计器支持所需的方法 - 不要修改
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            tableLayoutPanel1 = new TableLayoutPanel();
            txtY = new TextBox();
            txtX = new TextBox();
            txtResult = new TextBox();
            txtShape = new TextBox();
            lblIndex = new Label();
            txtMsg = new TextBox();
            tableLayoutPanel1.SuspendLayout();
            SuspendLayout();
            // 
            // tableLayoutPanel1
            // 
            tableLayoutPanel1.ColumnCount = 6;
            tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 50F));
            tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 20F));
            tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 20F));
            tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 20F));
            tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 20F));
            tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 20F));
            tableLayoutPanel1.Controls.Add(txtY, 5, 0);
            tableLayoutPanel1.Controls.Add(txtX, 4, 0);
            tableLayoutPanel1.Controls.Add(txtResult, 3, 0);
            tableLayoutPanel1.Controls.Add(txtShape, 2, 0);
            tableLayoutPanel1.Controls.Add(lblIndex, 0, 0);
            tableLayoutPanel1.Controls.Add(txtMsg, 1, 0);
            tableLayoutPanel1.Dock = DockStyle.Fill;
            tableLayoutPanel1.Location = new Point(0, 0);
            tableLayoutPanel1.Name = "tableLayoutPanel1";
            tableLayoutPanel1.RowCount = 1;
            tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 100F));
            tableLayoutPanel1.Size = new Size(831, 30);
            tableLayoutPanel1.TabIndex = 0;
            // 
            // txtY
            // 
            txtY.Dock = DockStyle.Fill;
            txtY.Location = new Point(677, 3);
            txtY.Name = "txtY";
            txtY.Size = new Size(151, 23);
            txtY.TabIndex = 6;
            txtY.Text = "0";
            // 
            // txtX
            // 
            txtX.Dock = DockStyle.Fill;
            txtX.Location = new Point(521, 3);
            txtX.Name = "txtX";
            txtX.Size = new Size(150, 23);
            txtX.TabIndex = 5;
            txtX.Text = "0";
            // 
            // txtResult
            // 
            txtResult.Dock = DockStyle.Fill;
            txtResult.Location = new Point(365, 3);
            txtResult.Name = "txtResult";
            txtResult.Size = new Size(150, 23);
            txtResult.TabIndex = 4;
            txtResult.Text = "True";
            // 
            // txtShape
            // 
            txtShape.Dock = DockStyle.Fill;
            txtShape.Location = new Point(209, 3);
            txtShape.Name = "txtShape";
            txtShape.Size = new Size(150, 23);
            txtShape.TabIndex = 3;
            // 
            // lblIndex
            // 
            lblIndex.AutoSize = true;
            lblIndex.Dock = DockStyle.Fill;
            lblIndex.Location = new Point(3, 0);
            lblIndex.Name = "lblIndex";
            lblIndex.Size = new Size(44, 30);
            lblIndex.TabIndex = 1;
            lblIndex.Text = "1";
            lblIndex.TextAlign = ContentAlignment.MiddleCenter;
            // 
            // txtMsg
            // 
            txtMsg.Dock = DockStyle.Fill;
            txtMsg.Location = new Point(53, 3);
            txtMsg.Name = "txtMsg";
            txtMsg.Size = new Size(150, 23);
            txtMsg.TabIndex = 2;
            // 
            // RecordControl
            // 
            AutoScaleDimensions = new SizeF(7F, 17F);
            AutoScaleMode = AutoScaleMode.Font;
            BackColor = Color.FromArgb(32, 41, 50);
            Controls.Add(tableLayoutPanel1);
            ForeColor = Color.White;
            Name = "RecordControl";
            Size = new Size(831, 30);
            tableLayoutPanel1.ResumeLayout(false);
            tableLayoutPanel1.PerformLayout();
            ResumeLayout(false);
        }
 
        #endregion
 
        private TableLayoutPanel tableLayoutPanel1;
        private Label lblIndex;
        private TextBox txtY;
        private TextBox txtX;
        private TextBox txtResult;
        private TextBox txtShape;
        private TextBox txtMsg;
    }
}