MatrixTDepthRemoveRows Method |
http://www.emgu.com
Return the matrix without a specified row span of the input array
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntaxpublic Matrix<TDepth> RemoveRows(
int startRow,
int endRow
)
Public Function RemoveRows (
startRow As Integer,
endRow As Integer
) As Matrix(Of TDepth)
public:
Matrix<TDepth>^ RemoveRows(
int startRow,
int endRow
)
member RemoveRows :
startRow : int *
endRow : int -> Matrix<'TDepth>
Parameters
- startRow
- Type: SystemInt32
Zero-based index of the starting row (inclusive) of the span - endRow
- Type: SystemInt32
Zero-based index of the ending row (exclusive) of the span
Return Value
Type:
MatrixTDepthThe matrix without a specified row span of the input array
See Also