-
Notifications
You must be signed in to change notification settings - Fork 2
/
WebCamYolo.csproj
85 lines (75 loc) · 3.06 KB
/
WebCamYolo.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Reference Include="AForge">
<HintPath>..\..\..\..\..\..\Program Files (x86)\AForge.NET\Framework\Release\AForge.dll</HintPath>
</Reference>
<Reference Include="AForge.Imaging">
<HintPath>..\..\..\..\..\..\Program Files (x86)\AForge.NET\Framework\Release\AForge.Imaging.dll</HintPath>
</Reference>
<Reference Include="AForge.Video">
<HintPath>..\..\..\..\..\..\Program Files (x86)\AForge.NET\Framework\Release\AForge.Video.dll</HintPath>
</Reference>
<Reference Include="AForge.Video.DirectShow">
<HintPath>..\..\..\..\..\..\Program Files (x86)\AForge.NET\Framework\Release\AForge.Video.DirectShow.dll</HintPath>
</Reference>
<Reference Include="Alturos.Yolo">
<HintPath>..\..\..\..\.nuget\packages\Alturos.Yolo\src\Alturos.Yolo\bin\Debug\netstandard2.0\Alturos.Yolo.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Remove="C:\Users\User\.nuget\packages\fastyolo\12.0.4\build\\yolo_cpp_dll.dll" />
</ItemGroup>
<ItemGroup>
<None Remove="C:\Users\User\.nuget\packages\fastyolo\12.0.4\build\\yolo_cpp_dll.dll" />
</ItemGroup>
<ItemGroup>
<None Remove="C:\Users\User\.nuget\packages\fastyolo\12.0.4\build\\pthreadVC2.dll" />
</ItemGroup>
<ItemGroup>
<None Remove="C:\Users\User\.nuget\packages\fastyolo\12.0.4\build\\yolo_cpp_dll_no_gpu.dll" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Emgu.CV" Version="4.6.0.5131" />
<PackageReference Include="Yolo.Net" Version="3.0.6-alpha.2" />
</ItemGroup>
<ItemGroup>
<Folder Include="networks\" />
</ItemGroup>
<ItemGroup>
<None Update="networks\yolov2-tiny-voc\voc.names">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="networks\yolov2-tiny-voc\yolov2-tiny-voc.cfg">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="networks\yolov2-tiny-voc\yolov2-tiny-voc.weights">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="networks\yolov3-tiny\coco.names">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="networks\yolov3-tiny\yolov3-tiny.cfg">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="networks\yolov3-tiny\yolov3-tiny.weights">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="networks\yolov3\coco.names">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="networks\yolov3\yolov3.cfg">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="networks\yolov3\yolov3.weights">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>