Click or drag to resize

GpuMat Constructor (GpuMat, Range, Range)

creates a matrix header for a part of the bigger matrix

Namespace:  OpenCvSharp.Cuda
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntax
public GpuMat(
	GpuMat m,
	Range rowRange,
	Range colRange
)

Parameters

m
Type: OpenCvSharp.CudaGpuMat
Array that (as a whole or partly) is assigned to the constructed matrix.
rowRange
Type: OpenCvSharpRange
Range of the m rows to take. As usual, the range start is inclusive and the range end is exclusive. Use Range.All to take all the rows.
colRange
Type: OpenCvSharpRange
Range of the m columns to take. Use Range.All to take all the columns.
See Also