Click or drag to resize

MatSubMat Method (Range, Range)

Extracts a rectangular submatrix.

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public Mat SubMat(
	Range rowRange,
	Range colRange
)

Parameters

rowRange
Type: OpenCvSharpRange
Start and end row of the extracted submatrix. The upper boundary is not included. To select all the rows, use Range::all().
colRange
Type: OpenCvSharpRange
Start and end column of the extracted submatrix. The upper boundary is not included. To select all the columns, use Range::all().

Return Value

Type: Mat

[Missing <returns> documentation for "M:OpenCvSharp.Mat.SubMat(OpenCvSharp.Range,OpenCvSharp.Range)"]

See Also