CvToolboxCopyMatrixTData Method (TData, IntPtr) |
http://www.emgu.com
Copy a jagged two dimensional array to 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<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