Click or drag to resize
GpuMatRowRange Method
http://www.emgu.com
Returns a GpuMat corresponding to the [startend) rows of the GpuMat. The data is shared with the current GpuMat.

Namespace: Emgu.CV.Cuda
Assembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public GpuMat RowRange(
	int start,
	int end
)

Parameters

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

Return Value

Type: GpuMat
The [startend) rows of the GpuMat
Remarks
The parent GpuMat should never be released before the returned GpuMat that represent the subregion
See Also