Click or drag to resize
CudaImageTColor, TDepthColRange Method
http://www.emgu.com
Returns a CudaImage corresponding to the [startend) columns of the CudaImage. The data is shared with the current Image.

Namespace: Emgu.CV.Cuda
Assembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public CudaImage<TColor, TDepth> ColRange(
	int start,
	int end
)

Parameters

start
Type: SystemInt32
The inclusive stating column to be extracted
end
Type: SystemInt32
The exclusive ending column to be extracted

Return Value

Type: CudaImageTColor, TDepth
The [startend) columns of the CudaImage
Remarks
The parent CudaImage should never be released before the returned CudaImage that represent the subregion
See Also