A VL wrapper for OpenCV based on OpenCvSharp and also using SharpDX MediaFoundation.
Try it with vvvv, the visual live-programming environment for .NET
Download: http://visualprogramming.net
In order to use this library with vl you have to install the nuget that is available via nuget.org. For information on how to use nugets with vl, see Manage Nugets in the vl documentation. As described there you go to the commandline and then type:
nuget install VL.OpenCV
For pre-release versions use this instead:
nuget install VL.OpenCV -pre
Once the VL.OpenCV nuget is installed and referenced in your vl document you'll see the category "OpenCV" in the nodebrowser. From there explore the nodes in its main sub-categories:
- Source (VideoIn, ImageReader,...)
- Sink (Renderer, ImageWriter)
- Filter (Blur, Dilate, Sobel,...)
- Detection (Contours, ObjectDetector, MarkerDetector,...)
Demo patches can be found using the Help Browser, or navigating here:
"\lib\packs\VL.OpenCV...\help\"
And vvvv beta demo patches are somewhat hidden here:
"\lib\packs\VL.OpenCV...\vvvv\girlpower\"
If you want to contribute to this repository, clone it into a directory like:
X:\vl-libs\VL.OpenCV
Open
X:\vl-libs\VL.OpenCV\src\VL.OpenCV.sln
in VisualStudio 2019 and build it. This is necessary for a few things that cannot yet be expressed in VL directly, like dynamic enums and static readonly instances of things.
This wrapper is depending on two thirdparty nugets: OpenCvSharp4.runtime.win and OpenCvSharp4. When installing the VL.OpenCV nuget as mentioned under "Using the library" above, this dependency will be installed automatically. To install it otherwise, go to your vvvv's
\lib\packs
on a commandline and run
nuget.exe install OpenCvSharp4.Windows
Then start vvvv with the commandline parameter:
--package-repositories "X:\vl-libs\"
which will make all packs found in that directory available as dependencies in vl documents. Note that it is possible to have both the nuget (binary) and the sources available. If both are found, the one in the "package-repositories" path is used. Like this you can easily switch between your local development version and the official nuget by simply including your local version in that search path or not.
VL.OpenCV will now show up as Nuget among a documents dependencies as shown here.