如果有人可以分享代码
C# EmguCV 框架中 Image.setValue(...) 方法的 C++(OpenCV) 等效项是什么。emgucv 参考: http ://www.emgu.com/wiki/files/2.3.0/document/Index.html
例如接下来如何用 C++ 编写代码:
private static Image<Gray, Byte> FilterPlate(Image<Gray, Byte> plate)
{
...
Image<Gray, Byte> thresh = plate.ThresholdBinaryInv(new Gray(120), new Gray(255));
using (Image<Gray, Byte> plateMask = new Image<Gray, byte>(plate.Size))
plateMask.SetValue(255.0);
...
thresh.SetValue(0, plateMask);
}
尤其是接下来的 C++ 等价物是什么:
thresh.SetValue(0, plateMask);
谢谢。