CvToolboxCopyMatrixD Method (IntPtr, D) |
http://www.emgu.com
Copy a jagged two dimensional array from the unmanaged memory
Namespace:
Emgu.CV.Util
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
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