SparseMatrixTDepthItem Property |
http://www.emgu.com
Get or Set the value in the specific row and col
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntaxpublic double this[
int row,
int col
] { get; set; }
Public Default Property Item (
row As Integer,
col As Integer
) As Double
Get
Set
public:
property double default[int row, int col] {
double get (int row, int col);
void set (int row, int col, double value);
}
member Item : float with get, set
Parameters
- row
- Type: SystemInt32
the row of the element - col
- Type: SystemInt32
the col of the element
Return Value
Type:
DoubleThe element on the specific
row and
col
See Also