如何在EMGUCV 3.1上拍摄相机的屏幕截图? [英] How do I take an Screenshot of my camera on EMGUCV 3.1?

查看:142
本文介绍了如何在EMGUCV 3.1上拍摄相机的屏幕截图?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

I'm doing a very simple program on EMGU CV, so I need to take a screenshot of what my camera is recording and save it in a specific folder, here follows my code of camera capture:

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

我为这些简单的词表示歉意,但我仍然真的对编程没什么看法.

I apologize for the simple terms, I still really noob in programming.

推荐答案

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

It seems like you just posted the standard code from the EmguCV wiki. But let me try to explain how you can show a video feed of your webcam on your computer and save a screenshot when you press a button (you'll have to create all the UI elements yourself). You'll need a form with an PictureBox element to display the image and a button to save a snapshot.

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

I'll explain everything in the code through comments and work from the standard EmguCV code:

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;
}

希望这对您有帮助.让我知道是否还有不清楚的地方!

Hope this helps you. Let me know if anything is still unclear!

这篇关于如何在EMGUCV 3.1上拍摄相机的屏幕截图?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆