http://www.emgu.com
Return the header, corresponding to a specified column of the input array
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
Syntax public 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