A VL wrapper for OpenCV based on OpenCVSharp3-AnyCPU and also using DirectShowLib.
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 Managing Nugets in the vl documentation. As described there you go to the commandline and then type:
nuget intall VL.OpenCV -prerelease
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, ImageFile,...)
- Sink (Renderer, VideoFile,...)
- Filter (Blur, Dilate, Sobel,...)
- Tracker (Contours, ObjectDetector, MedianFlow,...)
There is also a demo-patch coming with this package that is a bit hidden in:
"\lib\packs\VL.OpenCV...\vvvv\girlpower\demo.v4p"
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 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 the thirdparty nuget OpenCVSharp3-AnyCPU. 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 vvvvs
\lib\packs
on a commandline and run
nuget.exe install OpenCVSharp3-AnyCPU
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.