| SparseMat Constructor (IEnumerableInt32, MatType) | 
        
         
            constructs n-dimensional sparse matrix
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
 Syntax
Syntaxpublic SparseMat(
	IEnumerable<int> sizes,
	MatType type
)
Public Sub New ( 
	sizes As IEnumerable(Of Integer),
	type As MatType
)
public:
SparseMat(
	IEnumerable<int>^ sizes, 
	MatType type
)
new : 
        sizes : IEnumerable<int> * 
        type : MatType -> SparseMatOpenCvSharp.SparseMat = function(sizes, type);
Parameters
- sizes
- Type: System.Collections.GenericIEnumerableInt32
 Array of integers specifying an n-dimensional array shape.
- type
- Type: OpenCvSharpMatType
 Array type. Use MatType.CV_8UC1, ..., CV_64FC4 to create 1-4 channel matrices, 
            or MatType. CV_8UC(n), ..., CV_64FC(n) to create multi-channel matrices.
 See Also
See Also