MatrixTDepthItem Property |
http://www.emgu.com
Get or Set the value in the specific row and col
Namespace:
Emgu.CV
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic TDepth this[
int row,
int col
] { get; set; }
Public Property Item (
row As Integer,
col As Integer
) As TDepth
Get
Set
public:
property TDepth Item[int row, int col] {
TDepth get (int row, int col);
void set (int row, int col, TDepth value);
}
member Item : 'TDepth with get, set
Parameters
- row
- Type: SystemInt32
the row of the element - col
- Type: SystemInt32
the col of the element
Return Value
Type:
TDepthThe element on the specific
row and
col
See Also