OpenCvSharp.Cv2.ReadSparseMat C# (CSharp) Method

ReadSparseMat() public static method

public static ReadSparseMat ( FileNode node, SparseMat defaultMat = null ) : SparseMat
node FileNode
defaultMat SparseMat
return SparseMat
        public static SparseMat ReadSparseMat(FileNode node, SparseMat defaultMat = null)
        {
            if (node == null)
                throw new ArgumentNullException(nameof(node));
            return node.ReadSparseMat(defaultMat);
        }
Cv2