Get or Set the color in the rowth row (y direction) and columnth column (x direction)

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

Syntax

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

Parameters

row
Int32
The zero-based row (y direction) of the pixel
column
Int32
The zero-based column (x direction) of the pixel

Return Value

The color in the specific row and column

See Also