Merge pull request #511 from microsoft/user/numform/yolov4

Update Yolov4 sample to use the NuGet
This commit is contained in:
Numfor Tiapo 2023-01-23 10:17:29 -08:00 коммит произвёл GitHub
Родитель 7a99cf7f55 f7172e1d54
Коммит 02b586811c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -4,10 +4,13 @@ using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Windows.AI.MachineLearning;
using Windows.Media;
using Windows.Storage;
using Windows.UI.Xaml;
// Windows.AI.MachineLearning' refers to the libraries included in Windows,
// while 'Microsoft.AI.MachineLearning' refers to the externally available NuGet package.
using Microsoft.AI.MachineLearning;
// using Windows.AI.MachineLearning;
namespace YOLOv4ObjectDetection
{

Просмотреть файл

@ -152,6 +152,9 @@
</Page>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AI.MachineLearning">
<Version>1.13.1</Version>
</PackageReference>
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform">
<Version>6.2.10</Version>
</PackageReference>