http://www.emgu.com
Returns a GpuMat corresponding to the [startend) columns of the GpuMat. The data is shared with the current GpuMat.
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic GpuMat ColRange(
int start,
int end
)
Public Function ColRange (
start As Integer,
end As Integer
) As GpuMat
public:
GpuMat^ ColRange(
int start,
int end
)
member ColRange :
start : int *
end : int -> GpuMat
Parameters
- start
- Type: SystemInt32
The inclusive stating column to be extracted - end
- Type: SystemInt32
The exclusive ending column to be extracted
Return Value
Type:
GpuMatThe [
startend) columns of the GpuMat
RemarksThe parent GpuMat should never be released before the returned GpuMat that represent the subregion
See Also