我有以下代码示例:
//creating histogram using emgu cv c#
//Create a grayscale image
Image<Gray, Byte> img = new Image<Gray, byte>(400, 400);
// Fill image with random values
img.SetRandUniform(new MCvScalar(), new MCvScalar(255));
// Create and initialize histogram
DenseHistogram hist = new DenseHistogram(256, new RangeF(0.0f, 255.0f));
// Histogram Computing
hist.Calculate<Byte>(new Image<Gray, byte>[] { img }, true, null);
计算直方图后,我想在图表控件中显示结果。
有人可以提供实现此目的的想法/示例代码吗?感谢。
答案 0 :(得分:2)
HistogramBox控件可让您自动显示图像直方图。
关注emgu instructions以获取可以拖放到表单上的整个控件列表。然后它只是几个方法调用。
histogramBox.GenerateHistograms(img,bin); //bin = 256 in your example
histogramBox2.Refresh();