GpuMat Constructor (GpuMat, Range, Range) OpenCvSharp Class Library
creates a matrix header for a part of the bigger matrix

Namespace:  OpenCvSharp.CPlusPlus.Gpu
Assembly:  OpenCvSharp.CPlusPlus (in OpenCvSharp.CPlusPlus.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public GpuMat(
	GpuMat m,
	Range rowRange,
	Range colRange
)

Parameters

m
Type: OpenCvSharp.CPlusPlus.GpuGpuMat
Array that (as a whole or partly) is assigned to the constructed matrix.
rowRange
Type: OpenCvSharp.CPlusPlusRange
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: OpenCvSharp.CPlusPlusRange
Range of the m columns to take. Use Range.All to take all the columns.
See Also

Reference