Return the value of the specified bin of 1D histogram. In case of sparse histogram the function returns 0, if the bin is not present in the histogram, and no new bin is created.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public static double cvQueryHistValue_1D(
	IntPtr hist,
	int idx0
)
Public Shared Function cvQueryHistValue_1D ( _
	hist As IntPtr, _
	idx0 As Integer _
) As Double
public:
static double cvQueryHistValue_1D(
	IntPtr hist, 
	int idx0
)

Parameters

hist
IntPtr
Histogram
idx0
Int32
Indices of the bin

Return Value

the value of the specified bin of 1D histogram

See Also