我有一个如下代码。我希望将图像从picture-box
转换为由EmguCV应用median-filter
。问题是即使我处理图像,也会出现“内存不足”问题。单击多个按钮处理程序后,第一行显示问题。请帮帮我!
Bitmap bm1 = new Bitmap(imgBox.Image); //Out of memory
Image<Gray, byte> EmguImage1 = new Image<Gray, byte>(bm1);
EmguImage = EmguImage1.SmoothMedian(1);
imgBox.Image.Dispose();
imgBox.Image = EmguImage1.Bitmap;
bm1.Dispose();
EmguImage1.Dispose();