MatrixTDepthGetCol Method |
http://www.emgu.com
Get the specific column of the matrix
Namespace:
Emgu.CV
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic Matrix<TDepth> GetCol(
int col
)
Public Function GetCol (
col As Integer
) As Matrix(Of TDepth)
public:
Matrix<TDepth>^ GetCol(
int col
)
member GetCol :
col : int -> Matrix<'TDepth>
Parameters
- col
- Type: SystemInt32
the index of the column to be reterived
Return Value
Type:
MatrixTDepththe specific column of the matrix
See Also