CvToolboxCopyMatrixD Method (IntPtr, D) |
http://www.emgu.com
Copy a jagged two dimensional array from the unmanaged memory
Namespace: Emgu.CV.UtilAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic static void CopyMatrix<D>(
IntPtr src,
D[][] dest
)
Public Shared Sub CopyMatrix(Of D) (
src As IntPtr,
dest As D()()
)
public:
generic<typename D>
static void CopyMatrix(
IntPtr src,
array<array<D>^>^ dest
)
static member CopyMatrix :
src : IntPtr *
dest : 'D[][] -> unit
Parameters
- src
- Type: SystemIntPtr
The src array - dest
- Type: D
Pointer to the destination unmanaged memory
Type Parameters
- D
- The data type of the jagged two dimensional
See Also