繁体   English   中英

如何在EMGUCV 3.1上拍摄相机的屏幕截图?

[英]How do I take an Screenshot of my camera on EMGUCV 3.1?

我正在EMGU CV上做一个非常简单的程序,所以我需要对我的相机正在录制的内容进行截图并将其保存在特定的文件夹中,以下是我的相机捕获代码:

        ImageViewer viewer = new ImageViewer(); 
        VideoCapture capture = new VideoCapture(); 
        Application.Idle += new EventHandler(delegate (object sender, EventArgs e)
        {
            viewer.Image = capture.QueryFrame();
        });
        viewer.ShowDialog();

我为这些简单的条款表示歉意,但我仍然在编程方面还是很菜鸟。

似乎您刚刚从EmguCV Wiki发布了标准代码。 但是,让我尝试解释一下如何在您的计算机上显示网络摄像头的视频摘要并在按下按钮时保存屏幕截图(您必须自己创建所有UI元素)。 您将需要一个带有PictureBox元素的表单来显示图像,以及一个用于保存快照的按钮。

我将通过注释解释代码中的所有内容,并使用标准EmguCV代码进行工作:

private Capture capture;
private bool takeSnapshot = false;

public Form1()
{
    InitializeComponent();
}

private void Form1_Load(object sender, EventArgs e)
{
    // Make sure we only initialize webcam capture if the capture element is still null
    if (capture == null)
    {
        try
        {
            // Start grabbing data, change the number if you want to use another camera
            capture = new Capture(0);
        }
        catch (NullReferenceException excpt)
        {
            // No camera has been found
            MessageBox.Show(excpt.Message);
        }
    }

    // This makes sure the image will be fitted into your picturebox
    originalImageContainer.SizeMode = PictureBoxSizeMode.StretchImage;

    // When the capture is initialized, start processing the images in the PorcessFrame method
    if (capture != null)
        Application.Idle += ProcessFrame;
}

// You registered this method, so whenever the application is Idle, this method will be called.
// This allows you to process a new frame during that time.
private void ProcessFrame(object sender, EventArgs arg)
{
    // Get the newest webcam frame
    Image<Bgr, double> capturedImage = capture.QueryFrame();
    // Show it in your PictureBox. If you don't want to convert to Bitmap you should use an ImageBox (which is an EmguCV element)
    originalImageContainer.Image = capturedImage.ToBitmap();

    // If the button was clicked indicating you want a snapshot, save the image
    if(takeSnapshot)
    {
        // Save the image
        capturedImage.Save(@"C:\your\picture\path\image.jpg");
        // Set the bool to false again to make sure we only take one snapshot
        takeSnapshot = !takeSnapshot;
    }
}

//When clicking the save button
private void SaveButton_Click(object sender, EventArgs e)
{
    // Set the bool to true, so that on the next frame processing the frame will be saved
    takeSnapshot = !takeSnapshot;
}

希望这对您有所帮助。 让我知道还有什么不清楚的地方!

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM