如何使用Emgu库将捕获转换为图像

本文关键字:图像 Bgr Byte 转换 Emgu 何使用 | 更新日期: 2023-09-27 18:35:32

我正在努力使用 C# 中的 Emgu 库隐蔽捕获到图像中。我知道Emgu网站上有代码示例,但这些示例不涉及相机捕获。我想对相机的帧进行一些处理。

这是我到目前为止所拥有的:

Capture capture = null;
capture = new Capture(); //create a camera capture
capture.SetCaptureProperty(Emgu.CV.CvEnum.CapProp.Fps, 30);
capture.SetCaptureProperty(Emgu.CV.CvEnum.CapProp.FrameHeight, 240);
capture.SetCaptureProperty(Emgu.CV.CvEnum.CapProp.FrameWidth, 320); 
viewer.Image = capture.QueryFrame()
viewer.ShowDialog();

我希望能够在以下行中使用捕获:

Image<Gray, Byte> gray = capture.Convert<Gray, Byte>().PyrDown().PyrUp();

谢谢

如何使用Emgu库将捕获转换为图像<Bgr,Byte>

我认为如果你有一个垫子并且你想要一个图像,你可以执行以下操作:

Image<Bgr, Byte> img = new Image<Bgr, Byte>(theMat.Bitmap);

道格