http://www.emgu.com
Return the header, corresponding to a specified row of the input array
Namespace:
Emgu.CV
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic static IntPtr cvGetRow(
IntPtr arr,
IntPtr submat,
int row
)
Public Shared Function cvGetRow (
arr As IntPtr,
submat As IntPtr,
row As Integer
) As IntPtr
public:
static IntPtr cvGetRow(
IntPtr arr,
IntPtr submat,
int row
)
static member cvGetRow :
arr : IntPtr *
submat : IntPtr *
row : int -> IntPtr
Parameters
- arr
- Type: SystemIntPtr
Input array - submat
- Type: SystemIntPtr
Pointer to the prelocate memory of the resulting sub-array header - row
- Type: SystemInt32
Zero-based index of the selected row
Return Value
Type:
IntPtrThe header, corresponding to a specified row of the input array
See Also