Get the specific bin value from the 2D Histogram

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public double this[
	int index0,
	int index1
] { get; }
Public ReadOnly Default Property Item ( _
	index0 As Integer, _
	index1 As Integer _
) As Double
	Get
public:
property double default[int index0, int index1] {
	double get (int index0, int index1);
}

Parameters

index0
Int32
The 0th index of the bin
index1
Int32
The 1st index of the bin

Return Value

The value in the histogram bin

See Also