Diving into the Video API
The Video API provides advanced algorithms for video processing. Using this API, you can build more personalized and intelligent applications.
There are four main features of this API, which we will look into. They are:
- Face detection and tracking
- Motion detection
- Stabilizing shaky videos
- Generating intelligent video thumbnails
Note
If you have not already done so, register for an API key for the Video API at https://www.microsoft.com/cognitive-services/en-us/video-api.
Microsoft have created a NuGet package, containing the Video API, which allows us to utilize all the features available. Let us start by creating a new project in Visual Studio, based off our MVVM template.
In the newly created project, add Microsoft.ProjectOxford.Video
through the NuGet Package Manager.
As this example project will have a lot of common functionality, we just need one View. The example code provided has added a View, VideoView.xaml
, to the View
folder, and a corresponding view model. You...