轮胎外观检测添加思谋语义分割模型检测工具
C3204
18 小时以前 85a4bdc866f7ce0986d629820ef3e793f8b72787
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
namespace LB_VisionControls
{
    internal static class Program
    {
        /// <summary>
        /// 应用程序的主入口点。
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new ScriptEditForm());
        }
    }
}