http://www.emgu.com
Return the header, corresponding to a specified col 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 cvGetCols(
IntPtr arr,
IntPtr submat,
int startCol,
int endCol
)
Public Shared Function cvGetCols (
arr As IntPtr,
submat As IntPtr,
startCol As Integer,
endCol As Integer
) As IntPtr
public:
static IntPtr cvGetCols(
IntPtr arr,
IntPtr submat,
int startCol,
int endCol
)
static member cvGetCols :
arr : IntPtr *
submat : IntPtr *
startCol : int *
endCol : int -> IntPtr
Parameters
- arr
- Type: SystemIntPtr
Input array - submat
- Type: SystemIntPtr
Pointer to the prelocated memory of the resulting sub-array header - startCol
- Type: SystemInt32
Zero-based index of the selected column - endCol
- Type: SystemInt32
Zero-based index of the ending column (exclusive) of the span
Return Value
Type:
IntPtrThe header, corresponding to a specified col span of the input array
See Also