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.Cuda
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
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