Return the header, corresponding to a specified col span of the input array

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

C#
public static IntPtr cvGetCols(
	IntPtr arr,
	IntPtr submat,
	int startCol,
	int endCol
)
Visual Basic (Declaration)
Public Shared Function cvGetCols ( _
	arr As IntPtr, _
	submat As IntPtr, _
	startCol As Integer, _
	endCol As Integer _
) As IntPtr
Visual C++
public:
static IntPtr cvGetCols(
	IntPtr arr, 
	IntPtr submat, 
	int startCol, 
	int endCol
)

Parameters

arr
Type: System..::.IntPtr
Input array
submat
Type: System..::.IntPtr
Pointer to the prelocated mempry of the resulting sub-array header
startCol
Type: System..::.Int32
Zero-based index of the selected column
endCol
Type: System..::.Int32
Zero-based index of the ending column (exclusive) of the span

Return Value

The header, corresponding to a specified col span of the input array

See Also