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