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