轮胎外观检测添加思谋语义分割模型检测工具
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
namespace LB_SmartVision.Forms.Pages.ProcessPage
{
    partial class ProcessInputsEditControl
    {
        /// <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();
            uiButtonEdit = new Button();
            lblInput = new Label();
            lbl = new Label();
            lblOutput = new Label();
            tableLayoutPanel1.SuspendLayout();
            SuspendLayout();
            // 
            // tableLayoutPanel1
            // 
            tableLayoutPanel1.ColumnCount = 4;
            tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 33.33333F));
            tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 20F));
            tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 33.3333359F));
            tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 33.3333359F));
            tableLayoutPanel1.Controls.Add(uiButtonEdit, 3, 0);
            tableLayoutPanel1.Controls.Add(lblInput, 0, 0);
            tableLayoutPanel1.Controls.Add(lbl, 1, 0);
            tableLayoutPanel1.Controls.Add(lblOutput, 2, 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(500, 50);
            tableLayoutPanel1.TabIndex = 0;
            // 
            // uiButtonEdit
            // 
            uiButtonEdit.Dock = DockStyle.Fill;
            uiButtonEdit.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);
            uiButtonEdit.Location = new Point(342, 3);
            uiButtonEdit.MinimumSize = new Size(1, 1);
            uiButtonEdit.Name = "uiButtonEdit";
            uiButtonEdit.Size = new Size(155, 44);
            uiButtonEdit.TabIndex = 0;
            uiButtonEdit.Text = "编辑";
            uiButtonEdit.Click += uiButtonEdit_Click;
            // 
            // lblInput
            // 
            lblInput.AutoSize = true;
            lblInput.Dock = DockStyle.Fill;
            lblInput.Font = new Font("Microsoft YaHei UI", 12F);
            lblInput.Location = new Point(3, 0);
            lblInput.Name = "lblInput";
            lblInput.Size = new Size(153, 50);
            lblInput.TabIndex = 1;
            lblInput.Text = "X.Inputs.X";
            lblInput.TextAlign = ContentAlignment.MiddleRight;
            // 
            // lbl
            // 
            lbl.AutoSize = true;
            lbl.Dock = DockStyle.Fill;
            lbl.Font = new Font("Microsoft YaHei UI", 12F);
            lbl.Location = new Point(162, 0);
            lbl.Name = "lbl";
            lbl.Size = new Size(14, 50);
            lbl.TabIndex = 2;
            lbl.Text = "-";
            lbl.TextAlign = ContentAlignment.MiddleCenter;
            // 
            // lblOutput
            // 
            lblOutput.AutoSize = true;
            lblOutput.Dock = DockStyle.Fill;
            lblOutput.Font = new Font("Microsoft YaHei UI", 12F);
            lblOutput.Location = new Point(182, 0);
            lblOutput.Name = "lblOutput";
            lblOutput.Size = new Size(154, 50);
            lblOutput.TabIndex = 3;
            lblOutput.Text = "X.Outputs.X";
            lblOutput.TextAlign = ContentAlignment.MiddleLeft;
            // 
            // ProcessInputsEditControl
            // 
            AutoScaleDimensions = new SizeF(7F, 17F);
            AutoScaleMode = AutoScaleMode.Font;
            BackColor = Color.FromArgb(32, 41, 50);
            Controls.Add(tableLayoutPanel1);
            ForeColor = Color.White;
            MaximumSize = new Size(1920, 50);
            MinimumSize = new Size(0, 50);
            Name = "ProcessInputsEditControl";
            Size = new Size(500, 50);
            tableLayoutPanel1.ResumeLayout(false);
            tableLayoutPanel1.PerformLayout();
            ResumeLayout(false);
        }
 
        #endregion
 
        private TableLayoutPanel tableLayoutPanel1;
        private Button uiButtonEdit;
        public Label lblInput;
        private Label lbl;
        public Label lblOutput;
    }
}