轮胎外观检测添加思谋语义分割模型检测工具
C3204
2026-04-02 3c837a3be1548e296d6ed1afb32ebe418b69db25
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
143
namespace LB_VisionFlowNode
{
    partial class FlowNodeEditor
    {
        /// <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()
        {
            components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FlowNodeEditor));
            pnlMain = new FlowPanel();
            tspTop = new ToolStrip();
            btnRun = new ToolStripButton();
            btnClear = new ToolStripButton();
            btnSave = new ToolStripButton();
            btnLoad = new ToolStripButton();
            panel1 = new Panel();
            tspTop.SuspendLayout();
            panel1.SuspendLayout();
            SuspendLayout();
            // 
            // pnlMain
            // 
            pnlMain.BackColor = Color.FromArgb(32, 41, 50);
            pnlMain.Dock = DockStyle.Fill;
            pnlMain.Font = new Font("宋体", 9F);
            pnlMain.ForeColor = Color.White;
            pnlMain.Location = new Point(0, 0);
            pnlMain.Name = "pnlMain";
            pnlMain.Size = new Size(460, 304);
            pnlMain.TabIndex = 4;
            // 
            // tspTop
            // 
            tspTop.BackColor = Color.FromArgb(32, 41, 50);
            tspTop.Items.AddRange(new ToolStripItem[] { btnRun, btnClear, btnSave, btnLoad });
            tspTop.Location = new Point(0, 0);
            tspTop.Name = "tspTop";
            tspTop.Size = new Size(460, 25);
            tspTop.TabIndex = 14;
            tspTop.Text = "toolStrip1";
            // 
            // btnRun
            // 
            btnRun.DisplayStyle = ToolStripItemDisplayStyle.Text;
            btnRun.ForeColor = Color.White;
            btnRun.Image = (Image)resources.GetObject("btnRun.Image");
            btnRun.ImageTransparentColor = Color.Magenta;
            btnRun.Name = "btnRun";
            btnRun.Size = new Size(60, 22);
            btnRun.Text = "运行测试";
            btnRun.Click += btnRun_Click;
            // 
            // btnClear
            // 
            btnClear.DisplayStyle = ToolStripItemDisplayStyle.Text;
            btnClear.ForeColor = Color.White;
            btnClear.Image = (Image)resources.GetObject("btnClear.Image");
            btnClear.ImageTransparentColor = Color.Magenta;
            btnClear.Name = "btnClear";
            btnClear.Size = new Size(60, 22);
            btnClear.Text = "清空节点";
            btnClear.Click += btnClear_Click;
            // 
            // btnSave
            // 
            btnSave.DisplayStyle = ToolStripItemDisplayStyle.Text;
            btnSave.ForeColor = Color.White;
            btnSave.Image = (Image)resources.GetObject("btnSave.Image");
            btnSave.ImageTransparentColor = Color.Magenta;
            btnSave.Name = "btnSave";
            btnSave.Size = new Size(84, 22);
            btnSave.Text = "保存所有节点";
            btnSave.Click += btnSave_Click;
            // 
            // btnLoad
            // 
            btnLoad.DisplayStyle = ToolStripItemDisplayStyle.Text;
            btnLoad.ForeColor = Color.White;
            btnLoad.Image = (Image)resources.GetObject("btnLoad.Image");
            btnLoad.ImageTransparentColor = Color.Magenta;
            btnLoad.Name = "btnLoad";
            btnLoad.Size = new Size(84, 22);
            btnLoad.Text = "加载所有节点";
            btnLoad.Click += btnLoad_Click;
            // 
            // panel1
            // 
            panel1.AutoScroll = true;
            panel1.Controls.Add(pnlMain);
            panel1.Dock = DockStyle.Fill;
            panel1.Location = new Point(0, 25);
            panel1.Name = "panel1";
            panel1.Size = new Size(460, 304);
            panel1.TabIndex = 15;
            // 
            // FlowNodeEditor
            // 
            AutoScaleDimensions = new SizeF(7F, 17F);
            AutoScaleMode = AutoScaleMode.Font;
            Controls.Add(panel1);
            Controls.Add(tspTop);
            Name = "FlowNodeEditor";
            Size = new Size(460, 329);
            tspTop.ResumeLayout(false);
            tspTop.PerformLayout();
            panel1.ResumeLayout(false);
            ResumeLayout(false);
            PerformLayout();
        }
 
        #endregion
        private FlowPanel pnlMain;
        private ToolStrip tspTop;
        private ToolStripButton btnRun;
        private ToolStripButton btnClear;
        private ToolStripButton btnSave;
        private ToolStripButton btnLoad;
        private Panel panel1;
    }
}