HistogramBoxGenerateHistograms Method |
http://www.emgu.com
Generate histograms for the image. One histogram is generated for each color channel.
You will need to call the Refresh function to do the painting afterward.
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 void GenerateHistograms(
IInputArray image,
int numberOfBins
)
Public Sub GenerateHistograms (
image As IInputArray,
numberOfBins As Integer
)
public:
void GenerateHistograms(
IInputArray^ image,
int numberOfBins
)
member GenerateHistograms :
image : IInputArray *
numberOfBins : int -> unit
Parameters
- image
- Type: Emgu.CVIInputArray
The image to generate histogram from - numberOfBins
- Type: SystemInt32
The number of bins for each histogram
See Also