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.0.1.0 (2.0.1.0)
Syntax
C# |
---|
public TColor this[
int row,
int col
] { get; set; } |
Visual Basic (Declaration) |
---|
Public Default Property Item ( _
row As Integer, _
col As Integer _
) As TColor |
Visual C++ |
---|
public:
property TColor default[int row, int col] {
TColor get (int row, int col);
void set (int row, int col, TColor value);
} |
Return Value
The color in the specific
row and
column
See Also