3

私はemguCVとC#を使用しており、Webカメラビデオのキャプチャ/表示中にFPSが低くなっています(約8fps)。これまでのところ、これは私が試したことです。いくつかのフィルターも適用する必要がありますが、コードをより効率的にするにはどうすればよいですか?GPUを使用してこれらのフレームを処理する方法はありますか?

    private Capture _capture;
    private bool _captureInProgress;
    private Image<Bgr, Byte> frame;
    private void ProcessFrame(object sender, EventArgs arg)
    {
        frame = _capture.QueryFrame();
        captureImageBox.Image = frame;

    }

    private void startToolStripMenuItem_Click(object sender, EventArgs e)
    {
        #region if capture is not created, create it now
        if (_capture == null)
        {
            try
            {
                _capture = new Capture();
            }
            catch (NullReferenceException excpt)
            {
                MessageBox.Show(excpt.Message);
            }
        }
        #endregion

        Application.Idle += ProcessFrame;

        if (_capture != null)
        {
            if (_captureInProgress)
            {
                //stop the capture

                startToolStripMenuItem.Text = "Start";
                Application.Idle -= ProcessFrame;
            }
            else
            {
                //start the capture
                startToolStripMenuItem.Text = "Stop";
                Application.Idle += ProcessFrame;
            }

            _captureInProgress = !_captureInProgress;
        }
    }
4

1 に答える 1

1

問題は、Application.Idleコールバックでフレームを処理していることです。これは、頻繁に呼び出されるだけです。この行を置き換えます

Application.Idle += ProcessFrame

_capture.ImageGrabbed += ProcessFrame

そしてそれは動作するはずです。このコールバックは、フレームが使用可能になるたびに呼び出されます。

于 2013-04-11T20:55:52.187 に答える