HistogramBoxAddHistogram Method |
http://www.emgu.com
Add a plot of the 1D histogram. You should call the Refresh() function to update the control after all modification is complete.
Namespace:
Emgu.CV.UI
Assembly:
Emgu.CV.UI (in Emgu.CV.UI.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic void AddHistogram(
string name,
Color color,
Mat histogram,
int binSize,
float[] ranges
)
Public Sub AddHistogram (
name As String,
color As Color,
histogram As Mat,
binSize As Integer,
ranges As Single()
)
public:
void AddHistogram(
String^ name,
Color color,
Mat^ histogram,
int binSize,
array<float>^ ranges
)
member AddHistogram :
name : string *
color : Color *
histogram : Mat *
binSize : int *
ranges : float32[] -> unit
Parameters
- name
- Type: SystemString
The name of the histogram - color
- Type: System.DrawingColor
The drawing color - histogram
- Type: Emgu.CVMat
The 1D histogram to be drawn - binSize
- Type: SystemInt32
The size of the bin - ranges
- Type: SystemSingle
The ranges
See Also