MatrixTDepthItem Property |
http://www.emgu.com
Get or Set the value in the specific row and col
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.3.0.2824 (3.3.0.2824)
Syntaxpublic TDepth this[
int row,
int col
] { get; set; }
Public Default Property Item (
row As Integer,
col As Integer
) As TDepth
Get
Set
public:
property TDepth default[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