我正在尝试使用Visual Studio 2010中的EMGU CV捕获视频,但是当它执行该行时
video.WriteFrame<Bgr, byte>(marked);
我得到了以下错误:
System.AccessViolationException未处理
尝试读取或写入受保护的内存。这通常表明其他内存已损坏。
private void button3_Click_1(object sender, EventArgs e)
{
Capture camera = new Capture();
if (camera == null)
{
MessageBox.Show("can't find a camera", "error");
}
double fps = camera.GetCaptureProperty(CAP_PROP.CV_CAP_PROP_FPS);
double cpHeight = camera.GetCaptureProperty(CAP_PROP.CV_CAP_PROP_FRAME_HEIGHT);
double cpWidth = camera.GetCaptureProperty(CAP_PROP.CV_CAP_PROP_FRAME_WIDTH);
double fourcc = camera.GetCaptureProperty(CAP_PROP.CV_CAP_PROP_FOURCC);
CvInvoke.cvNamedWindow("camera");
Image<Bgr, byte> temp = camera.QueryFrame();
//路径
SaveFileDialog SaveFileDialog1 = new SaveFileDialog();
SaveFileDialog1.FileName = DateTime.Now.ToString("yyyyMMddhhmmss");
SaveFileDialog1.Filter = "Image Files(*.avi)|*.avi|All files (*.*)|*.*";
if (SaveFileDialog1.ShowDialog() == DialogResult.OK)
{
MessageBox.Show("START RECORD,ESC TO STOP");
}
VideoWriter video = new VideoWriter(SaveFileDialog1.FileName, (int)fourcc, 15, 800, 600, true);
while (temp != null)
{
CvInvoke.cvShowImage("camera", temp.Ptr);
temp = camera.QueryFrame();
int c = CvInvoke.cvWaitKey(20);
Image<Bgr, byte> marked = faceDetection(temp);
video.WriteFrame<Bgr, byte>(marked);
if (c == 27) break;
}
video.Dispose();
camera.Dispose();
CvInvoke.cvDestroyWindow("camera");
}
有谁知道可能导致这种情况的原因?
由于
埃文
答案 0 :(得分:0)
重新订购以下产品线之后,它完美地为我服务。还检查标记是否为空。如果标记为null,则会引发访问冲突错误。
while (temp != null)
{
CvInvoke.cvShowImage("camera", temp.Ptr);
Image<Bgr, byte> marked = faceDetection(temp);
video.WriteFrame<Bgr, byte>(marked);
int c = CvInvoke.cvWaitKey(20);
if (c == 27) break;
temp = camera.QueryFrame();
}
答案 1 :(得分:0)
对于迟到的回答感到抱歉,但也许有人会觉得它很有帮助。
我现在正在解决这个错误(在不同的情况下),看起来这是尝试在我的64位Windows项目中包含32位组件的问题。
在32位系统上运行完美,在64位上我有“System.AccessViolationException未处理”
可悲的是,在我的情况下做不了多少,只是放弃组件并以其他方式做到这一点
也许这也是一个问题。什么是VideoWriter,看起来不像标准的.NET类?