轮胎外观检测添加思谋语义分割模型检测工具
C3204
2026-04-01 eda17eddf88e6108cadbf8dcef5c2195c1a7b708
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
<Project Sdk="Microsoft.NET.Sdk">
 
    <PropertyGroup>
        <OutputType>WinExe</OutputType>
        <TargetFramework>net8.0-windows</TargetFramework>
        <Nullable>enable</Nullable>
        <UseWindowsForms>true</UseWindowsForms>
        <ImplicitUsings>enable</ImplicitUsings>
        <GenerateDocumentationFile>False</GenerateDocumentationFile>
        <SignAssembly>False</SignAssembly>
        <UseWPF>False</UseWPF>
        <ApplicationIcon>LOGO\logo.ico</ApplicationIcon>
        <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
        <Platforms>AnyCPU;x64</Platforms>
        <PublishReadyToRun>True</PublishReadyToRun>
    </PropertyGroup>
 
    <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
        <Optimize>False</Optimize>
    </PropertyGroup>
 
    <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
        <Optimize>False</Optimize>
    </PropertyGroup>
 
    <ItemGroup>
        <Compile Remove="bin\**" />
        <Compile Remove="LOGO\**" />
        <EmbeddedResource Remove="bin\**" />
        <EmbeddedResource Remove="LOGO\**" />
        <None Remove="bin\**" />
        <None Remove="LOGO\**" />
    </ItemGroup>
 
    <ItemGroup>
        <Compile Remove="MainForm.cs" />
        <Compile Remove="MainForm.Designer.cs" />
    </ItemGroup>
 
    <ItemGroup>
        <EmbeddedResource Remove="MainForm.resx" />
    </ItemGroup>
 
    <ItemGroup>
        <None Remove="halcondotnet.dll" />
        <None Remove="ProcessDatabase.mdf" />
        <None Remove="ProcessDatabase_log.ldf" />
    </ItemGroup>
 
    <ItemGroup>
      <Content Include="LOGO\logo.ico" />
    </ItemGroup>
 
    <ItemGroup>
        <Reference Include="halcondotnetxl">
          <HintPath>..\LB_VisionProcesses\ref\halcondotnetxl.dll</HintPath>
        </Reference>
        <Reference Include="MySql.Data">
          <HintPath>ref\MySql.Data.dll</HintPath>
        </Reference>
    </ItemGroup>
 
    <ItemGroup>
        <Compile Update="Forms\Pages\CameraPage\CamerasEditPage.cs" />
        <Compile Update="Forms\Pages\CameraPage\CreateCameraForm.cs" />
        <Compile Update="Forms\Pages\CommunicatorPage\CreateCommunicatorForm.cs" />
        <Compile Update="Forms\Pages\LEDLightSourceControlPage\LEDLightSourceControlEditPage.cs">
          <SubType>UserControl</SubType>
        </Compile>
        <Compile Update="Forms\Pages\MotionControlPage\MotionControlFormRead.cs">
          <SubType>Form</SubType>
        </Compile>
        <Compile Update="Forms\Pages\SettingPage\CsvPage.cs">
            <SubType>UserControl</SubType>
        </Compile>
        <Compile Update="Forms\Pages\SettingPage\CsvSettingControl.cs">
            <SubType>UserControl</SubType>
        </Compile>
        <Compile Update="Properties\Resources.Designer.cs">
            <DesignTime>True</DesignTime>
            <AutoGen>True</AutoGen>
            <DependentUpon>Resources.resx</DependentUpon>
        </Compile>
    </ItemGroup>
    <ItemGroup>
        <EmbeddedResource Update="Properties\Resources.resx">
            <Generator>ResXFileCodeGenerator</Generator>
            <LastGenOutput>Resources.Designer.cs</LastGenOutput>
        </EmbeddedResource>
    </ItemGroup>
 
    <ItemGroup>
        <PackageReference Include="CsvHelper" Version="33.1.0" />
        <PackageReference Include="log4net" Version="3.2.0" />
        <PackageReference Include="MaterialSkin.NET5" Version="1.0.2" />
        <PackageReference Include="Serilog" Version="4.3.0" />
        <PackageReference Include="Serilog.Sinks.Console" Version="6.1.1" />
        <PackageReference Include="Serilog.Sinks.File" Version="7.0.0" />
        <PackageReference Include="SunnyUI" Version="3.9.2" />
        <PackageReference Include="System.Data.SqlClient" Version="4.9.0" />
    </ItemGroup>
    <ItemGroup>
      <ProjectReference Include="..\LB_SmartVisionCommon\LB_SmartVisionCommon.csproj" />
      <ProjectReference Include="..\LB_SmartVisionLoginUI\LB_SmartVisionLoginUI.csproj" />
      <ProjectReference Include="..\LB_VisionFlowNode\LB_VisionFlowNode.csproj" />
      <ProjectReference Include="..\LB_VisionProcesses\LB_VisionProcesses.csproj" />
    </ItemGroup>
 
    <ItemGroup>
      <None Update="log4net.config">
        <CopyToOutputDirectory>Always</CopyToOutputDirectory>
      </None>
      <None Update="ref\MySql.Data.dll">
        <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
      </None>
      <None Update="ref\MySql.Data.xml">
        <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
      </None>
    </ItemGroup>
</Project>