Skip to content

Commit e8a2772

Browse files
author
Sheil Kumar
committed
Update readmes and PR feedback.
1 parent 34316af commit e8a2772

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

Samples/WinMLSamplesGallery/README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,15 @@ To learn how to implement these features in your application, or unlock addition
3030
- Build and deploy the **WinMLSamplesGallery (Package)** project.
3131

3232
## Samples
33-
- [Image Classifiation](./WinMLSamplesGallery/Samples/ImageClassifier): Pick an image and classify the scene into 1000 categories such as keyboard, mouse, pencil, and many animals. This sample demonstrates image classification using a large number of models taken from the [ONNX Model Zoo](https://github.com/onnx/models).
33+
- [Image Classifiation](./WinMLSamplesGallery/Samples/ImageClassifier): This sample demonstrates image classification using a large number of models taken from the [ONNX Model Zoo](https://github.com/onnx/models).
3434

35-
- [Image Effects](./WinMLSamplesGallery/Samples/ImageEffects): Pick an image and apply a variety of effects powered by Windows AI MachineLearning like Blur, Sharpen, Contrast, and many more. These effects can be used to perform model input image preprocessing, or postprocessing for visualizing outputs.
35+
- [Image Effects](./WinMLSamplesGallery/Samples/ImageEffects): See how to apply preprocessing and postprocessing effects using platform and hardware agnostic ONNX Models and [chaining in Windows ML](https://docs.microsoft.com/en-us/windows/ai/windows-ml/chaining).
3636

37-
- [Batched Inputs](./WinMLSamplesGallery/Samples/Batching): WinML enables batched inputs that allow callers to perform inference over multiple inputs at once in order to increase performance. Use this sample to compare inference runtime performace with and without batching.
37+
- [Batched Inputs](./WinMLSamplesGallery/Samples/Batching): See how to speed up inference with batched inputs.
3838

39-
- [OpenCV Interop](./WinMLSamplesGallery/Samples/OpenCVInterop): This sample demonstrates how to interop between [Windows ML](https://docs.microsoft.com/en-us/windows/ai/windows-ml/) and [OpenCV](https://github.com/opencv/opencv). The demo will run [SqueezeNet](https://github.com/onnx/models/tree/master/vision/classification/squeezenet) image classification in WindowsML and consume images loaded and preprocessed using OpenCV.
39+
- [OpenCV](./WinMLSamplesGallery/Samples/OpenCVInterop): See how to interop between [Windows ML](https://docs.microsoft.com/en-us/windows/ai/windows-ml/) and [OpenCV](https://github.com/opencv/opencv).
4040

41+
- [ImageSharp](./WinMLSamplesGallery/Samples/ImageSharpInterop): See how to interop between [Windows ML](https://docs.microsoft.com/en-us/windows/ai/windows-ml/) and [ImageSharp](https://docs.sixlabors.com/articles/imagesharp/index.html).
4142
## Feedback
4243
Please file an issue [here](https://github.com/microsoft/Windows-Machine-Learning/issues/new) if you encounter any issues with the WinML Samples Gallery or wish to request a new sample.
4344

Samples/WinMLSamplesGallery/WinMLSamplesGallery/Samples/ImageSharpInterop/ImageSharpExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
using Microsoft.AI.MachineLearning;
1212
using Windows.Graphics.Imaging;
1313

14-
namespace ImageSharpExtensrions
14+
namespace ImageSharpExtensionMethods
1515
{
1616
public static class ImageExtensions
1717
{

Samples/WinMLSamplesGallery/WinMLSamplesGallery/Samples/ImageSharpInterop/ImageSharpInterop.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
using WinMLSamplesGallery.Controls;
1919
using SixLabors.ImageSharp;
2020
using SixLabors.ImageSharp.PixelFormats;
21-
using ImageSharpExtensrions;
21+
using ImageSharpExtensionMethods;
2222
using SixLabors.ImageSharp.Processing;
2323

2424
namespace WinMLSamplesGallery.Samples

0 commit comments

Comments
 (0)