0
我有以下代碼例如:直方圖已經計算如何在圖表控件中顯示EMGU直方圖?
//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);
後,我想dislay結果以圖表的控制。
有人可以提供實現這個想法/示例代碼?謝謝。