OpenCvSharp.Blob.CvBlobLib.FilterLabels C# (CSharp) Method

FilterLabels() public static method

Draw a binary image with the blobs that have been given. (cvFilterLabels)
public static FilterLabels ( CvBlobs blobs, Mat imgOut ) : void
blobs CvBlobs List of blobs to be drawn.
imgOut Mat Output binary image (depth=IPL_DEPTH_8U and nchannels=1).
return void
        public static void FilterLabels(CvBlobs blobs, Mat imgOut)
        {
            if (blobs == null)
                throw new ArgumentNullException(nameof(blobs));
            blobs.FilterLabels(imgOut);
        }