YoloTest_OpenVINO.csproj 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{1A27555E-2117-439F-8672-2E0D28DAC6BD}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <RootNamespace>YoloTest</RootNamespace>
  10. <AssemblyName>YoloTest</AssemblyName>
  11. <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  14. <Deterministic>true</Deterministic>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <PlatformTarget>x64</PlatformTarget>
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. <Prefer32Bit>false</Prefer32Bit>
  26. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  27. </PropertyGroup>
  28. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  29. <PlatformTarget>AnyCPU</PlatformTarget>
  30. <DebugType>pdbonly</DebugType>
  31. <Optimize>true</Optimize>
  32. <OutputPath>bin\Release\</OutputPath>
  33. <DefineConstants>TRACE</DefineConstants>
  34. <ErrorReport>prompt</ErrorReport>
  35. <WarningLevel>4</WarningLevel>
  36. </PropertyGroup>
  37. <ItemGroup>
  38. <Reference Include="System" />
  39. <Reference Include="System.Core" />
  40. <Reference Include="System.Drawing" />
  41. <Reference Include="System.Xml.Linq" />
  42. <Reference Include="System.Data.DataSetExtensions" />
  43. <Reference Include="Microsoft.CSharp" />
  44. <Reference Include="System.Data" />
  45. <Reference Include="System.Net.Http" />
  46. <Reference Include="System.Xml" />
  47. </ItemGroup>
  48. <ItemGroup>
  49. <Compile Include="Program.cs" />
  50. <Compile Include="Properties\AssemblyInfo.cs" />
  51. <Compile Include="YoloV6Detector.cs" />
  52. </ItemGroup>
  53. <ItemGroup>
  54. <None Include="App.config" />
  55. <None Include="Model\best_ckpt.onnx" />
  56. <None Include="Model\best_stop_aug_ckpt.onnx" />
  57. <None Include="Model\yolov6n.onnx" />
  58. </ItemGroup>
  59. <ItemGroup>
  60. <PackageReference Include="Intel.ML.OnnxRuntime.OpenVino">
  61. <Version>1.24.1</Version>
  62. </PackageReference>
  63. <PackageReference Include="OpenCvSharp4">
  64. <Version>4.13.0.20260308</Version>
  65. </PackageReference>
  66. <PackageReference Include="OpenCvSharp4.runtime.win">
  67. <Version>4.13.0.20260302</Version>
  68. </PackageReference>
  69. </ItemGroup>
  70. <ItemGroup>
  71. <Content Include="Model\2025-08-11-09-55-30-244.jpg" />
  72. <Content Include="Model\2025-08-11-09-55-30-443.jpg" />
  73. <Content Include="Model\2025-08-11-09-55-30-647.jpg" />
  74. </ItemGroup>
  75. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  76. </Project>