ImageTColor, TDepthItem Property (Int32, Int32) |
http://www.emgu.com
Get or Set the color in the rowth row (y direction) and columnth column (x direction)
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic 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);
}
member Item : 'TColor with get, set
Parameters
- row
- Type: SystemInt32
The zero-based row (y direction) of the pixel - column
- Type: SystemInt32
The zero-based column (x direction) of the pixel
Return Value
Type:
TColorThe color in the specific
row and
column
See Also