gpt4 book ai didi

c# - pictureBox 图像处理异常

转载 作者:行者123 更新时间:2023-12-04 22:50:45 27 4
gpt4 key购买 nike

最近想试试AForge.NET因为我发现它非常简单,所以我决定使用 Video.FFMPEG 命名空间来制作一些简单的视频播放,这样我就可以将每一帧直接放在图片框上。仅此一项效果很好,但我想在不重要之后处理每张图像,因为它无缘无故地占用了大约 1.5GB 的内存。这就是我的问题开始的地方。出于某种原因,它有时会抛出这个异常(通常在调整窗口大小时)。我不确定它可能是由什么引起的。也许这真的是一个愚蠢的错误。我的猜测是它可能是由计时器引起的,但我可能犯了一个完全不同的错误,只是看不到它。这是我不断得到的异常(exception):

    ************** Exception Text **************
System.ArgumentException: Parameter is not valid.
at System.Drawing.Image.get_Width()
at System.Drawing.Image.get_Size()
at System.Windows.Forms.PictureBox.ImageRectangleFromSizeMode(PictureBoxSizeMode mode)
at System.Windows.Forms.PictureBox.OnPaint(PaintEventArgs pe)
at System.Windows.Forms.Control.PaintWithErrorHandling(PaintEventArgs e, Int16 layer)
at System.Windows.Forms.Control.WmPaint(Message& m)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)

这是代码(我确实意识到公共(public)变量不好,我当然只是在测试):
public long i = 0;
public Bitmap img;
public VideoFileReader reader;
public System.Timers.Timer aTimer;

public void render(object source, ElapsedEventArgs e)
{
if (img != null) img.Dispose();
if (i < reader.FrameCount)
{
img = reader.ReadVideoFrame();
pictureBox1.Image = img;
}
i++;
}

private void button1_Click(object sender, EventArgs e)
{
reader = new VideoFileReader();
aTimer = new System.Timers.Timer();
reader.Open("d:\\result.avi");
aTimer.Elapsed += new ElapsedEventHandler(render);
aTimer.Interval = reader.FrameRate;
aTimer.Enabled = true;
}

最佳答案

我想我在定时器方面错过了一些东西,它们似乎在这种情况下效果不佳。对于想要使用 AForge.NET 进行回放的人来说,这可能是一个解决方案。我推迟了计时器,而是使用了带有 Stopwatch 的 backgroundWorker,到目前为止没有出现任何问题。

    public Image img;
public VideoFileReader reader;

private void button1_Click(object sender, EventArgs e)
{
reader = new VideoFileReader();
reader.Open("d:\\result.avi");
backgroundWorker1.RunWorkerAsync();
}

private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
{
Stopwatch watch = new Stopwatch();
for (i=0;i<reader.FrameCount;i++)
{
img = pictureBox1.Image;
pictureBox1.Image = reader.ReadVideoFrame();
if (img != null) img.Dispose();
watch.Start();
while (watch.ElapsedMilliseconds < reader.FrameRate);
watch.Stop();
watch.Reset();
}
}

关于c# - pictureBox 图像处理异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40195195/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com