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