I got OpenCV to work via NuGet! Here are the steps to consume it: 1. File > New > C++ > UWP 2. References > Manage NuGet References > Add OpenCV.UWP.native.imgcodecs This package is currently in pre-release, so it only shows up if you check the “Include Pre-release” checkbox. It brings in two…
Month: December 2015
PlatformSpecific.Analayzer – to spot when you’re using platform-specific UWP APIs
With the release of 10586, I’ve wanted to know whether an API I just used was newly introduced in 10586 or was already present back in 10240. So what I did is write a “Roslyn Analyzer” for VB/C# and put it on NuGet. It detects whether an API I’ve used is platform-specific or version-specific. If…