我正在使用 AForge.net,我想在文本框中显示标准偏差的值。以下代码不起作用:
AForge.Imaging.ImageStatistics stat = new AForge.Imaging.ImageStatistics(btm_1);
AForge.Math.Histogram gray = stat.Gray;
this.textB_1.Text = gray.StdDev.ToString();
它失败并出现以下错误:
你调用的对象是空的。
两者gray
都stat.Gray
为空。