http://www.emgu.com
Return the header, corresponding to a specified row span of the input array
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic static IntPtr cvGetRows(
IntPtr arr,
IntPtr submat,
int startRow,
int endRow,
int deltaRow
)
Public Shared Function cvGetRows (
arr As IntPtr,
submat As IntPtr,
startRow As Integer,
endRow As Integer,
deltaRow As Integer
) As IntPtr
public:
static IntPtr cvGetRows(
IntPtr arr,
IntPtr submat,
int startRow,
int endRow,
int deltaRow
)
static member cvGetRows :
arr : IntPtr *
submat : IntPtr *
startRow : int *
endRow : int *
deltaRow : int -> IntPtr
Parameters
- arr
- Type: SystemIntPtr
Input array - submat
- Type: SystemIntPtr
Pointer to the prelocated memory of resulting sub-array header - startRow
- Type: SystemInt32
Zero-based index of the starting row (inclusive) of the span - endRow
- Type: SystemInt32
Zero-based index of the ending row (exclusive) of the span - deltaRow
- Type: SystemInt32
Index step in the row span. That is, the function extracts every delta_row-th row from start_row and up to (but not including) end_row
Return Value
Type:
IntPtrThe header, corresponding to a specified row span of the input array
See Also