This commit is contained in:
amrutha95 2021-08-04 23:01:51 -07:00 коммит произвёл GitHub
Родитель 27f256b4bf
Коммит 74db9c80b9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -44,7 +44,9 @@ To perform image classification, import the `CommunityToolkit.Labs.Intelligent.I
This nuget package performs [SqueezeNet](https://github.com/onnx/models/tree/master/vision/classification/squeezenet) model inferencing using [WinML](https://github.com/microsoft/Windows-Machine-Learning). SqueezeNet can detect [1000 different classes](https://github.com/onnx/models/blob/master/vision/classification/synset.txt).
### Object Detection (Note: This currently only works with Windows 11. We are looking into this [issue](https://github.com/CommunityToolkit/Labs-IntelligentAPIs/issues/3))
### Object Detection
(Note: This currently only works with Windows 11. We are looking into this [issue](https://github.com/CommunityToolkit/Labs-IntelligentAPIs/issues/3))
To perform object detection on your images/video, import the `CommunityToolkit.Labs.Intelligent.ObjectDetection` nuget package. To detect objects in the image, you can either pass an image file as a StorageFile object, VideoFrame or SoftwareBitmap.
```C#