http://www.emgu.com
Returns a GpuMat corresponding to the ith column of the GpuMat. The data is shared with the current GpuMat.
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntaxpublic GpuMat Col(
int i
)
Public Function Col (
i As Integer
) As GpuMat
public:
GpuMat^ Col(
int i
)
member Col :
i : int -> GpuMat
Parameters
- i
- Type: SystemInt32
The column to be extracted
Return Value
Type:
GpuMatThe ith column of the GpuMat
RemarksThe parent GpuMat should never be released before the returned GpuMat that represent the subregion
See Also