HistogramBoxGenerateHistogram 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
Assemblies:
Emgu.CV.Platform.NetCore (in Emgu.CV.Platform.NetCore.dll) Version: 4.3.0.3890
Emgu.CV.Platform.NetFramework (in Emgu.CV.Platform.NetFramework.dll) Version: 4.3.0.3890 (4.3.0.3890)
Syntaxpublic Mat GenerateHistogram(
string name,
Color color,
Mat histogram,
int binSize,
float[] ranges
)
Public Function GenerateHistogram (
name As String,
color As Color,
histogram As Mat,
binSize As Integer,
ranges As Single()
) As Mat
public:
Mat^ GenerateHistogram(
String^ name,
Color color,
Mat^ histogram,
int binSize,
array<float>^ ranges
)
member GenerateHistogram :
name : string *
color : Color *
histogram : Mat *
binSize : int *
ranges : float32[] -> Mat
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
Return Value
Type:
Mat[Missing <returns> documentation for "M:Emgu.CV.UI.HistogramBox.GenerateHistogram(System.String,System.Drawing.Color,Emgu.CV.Mat,System.Int32,System.Single[])"]
See Also