Get or Set the value in the specific row and col

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.1.0.649 (2.1.0.649)

Syntax

         
 C#  Visual Basic  Visual C++ 
public TDepth this[
	int row,
	int col
] { get; set; }
Public Default Property Item ( _
	row As Integer, _
	col As Integer _
) As TDepth
public:
property TDepth default[int row, int col] {
	TDepth get (int row, int col);
	void set (int row, int col, TDepth value);
}

Parameters

row
Int32
the row of the element
col
Int32
the col of the element

Return Value

The element on the specific row and col

See Also