A fast inline substitution for cvInitMatHeader. Namely, it is equivalent to:
CvMat mat;
cvInitMatHeader( &mat, rows, cols, type, data, CV_AUTOSTEP );
Namespace:
Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.1.0.649 (2.1.0.649)
Syntax
C# | Visual Basic | Visual C++ |
Parameters
- rows
- Int32
Number of rows in the matrix.
- cols
- Int32
Number of columns in the matrix.
- type
- MAT_DEPTH
Type of the matrix elements (see CreateMat).
- data
- IntPtr
Optional data pointer assigned to the matrix header.
Return Value
[Missing <returns> documentation for "M:Emgu.CV.CvInvoke.cvMat(System.Int32,System.Int32,Emgu.CV.CvEnum.MAT_DEPTH,System.IntPtr)"]