CudaImageTColor, TDepthCol Method |
http://www.emgu.com
Returns a CudaImage corresponding to the ith column of the CudaImage. The data is shared with the current Image.
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic CudaImage<TColor, TDepth> Col(
int i
)
Public Function Col (
i As Integer
) As CudaImage(Of TColor, TDepth)
public:
CudaImage<TColor, TDepth>^ Col(
int i
)
member Col :
i : int -> CudaImage<'TColor, 'TDepth>
Parameters
- i
- Type: SystemInt32
The column to be extracted
Return Value
Type:
CudaImageTColor,
TDepthThe ith column of the CudaImage
RemarksThe parent CudaImage should never be released before the returned CudaImage that represent the subregion
See Also