我想在使用 EMGU 的 C# 程序中创建直方图。EMGU 里面有一个叫 MCvHistogram 的类,但是我不知道怎么用。
问问题
15694 次
2 回答
11
如果你想使用 EmguCV,你应该使用 DenseHistogram 类。我将向您展示基本用法:
// 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);
DenseHistogram 类中还有很多其他常用方法,例如 Back Projection
于 2011-02-05T10:45:34.200 回答
3
您可以使用此代码段:
histogramBox.GenerateHistograms(image,bin);
histogramBox2.Refresh();
它将自动创建图片的直方图。
于 2011-04-27T10:15:43.223 回答