MatrixTDepthGetCols Method |
http://www.emgu.com
Get the Matrix, corresponding to a specified column 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> GetCols(
int startCol,
int endCol
)
Public Function GetCols (
startCol As Integer,
endCol As Integer
) As Matrix(Of TDepth)
public:
Matrix<TDepth>^ GetCols(
int startCol,
int endCol
)
member GetCols :
startCol : int *
endCol : int -> Matrix<'TDepth>
Parameters
- startCol
- Type: SystemInt32
Zero-based index of the selected column - endCol
- Type: SystemInt32
Zero-based index of the ending column (exclusive) of the span
Return Value
Type:
MatrixTDepththe specific column span of the matrix
See Also