Mat Constructor (Int32, DepthType, IntPtr, IntPtr) |
http://www.emgu.com
Create multi-dimension mat using existing data.
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic Mat(
int[] sizes,
DepthType type,
IntPtr data,
IntPtr[] steps = null
)
Public Sub New (
sizes As Integer(),
type As DepthType,
data As IntPtr,
Optional steps As IntPtr() = Nothing
)
public:
Mat(
array<int>^ sizes,
DepthType type,
IntPtr data,
array<IntPtr>^ steps = nullptr
)
new :
sizes : int[] *
type : DepthType *
data : IntPtr *
?steps : IntPtr[]
(* Defaults:
let _steps = defaultArg steps null
*)
-> Mat
Parameters
- sizes
- Type: SystemInt32
The sizes of each dimension - type
- Type: Emgu.CV.CvEnumDepthType
The type of data - data
- Type: SystemIntPtr
The pointer to the unmanaged data - steps (Optional)
- Type: SystemIntPtr
The steps
See Also