c#openCV图片传递-尝试读取或写入受保护的内存。这通常指示其他内存已损坏。解决方法
未处理accessviolationexception
这通常指示其他内存已损坏,这里内存损坏并非物理的内存条损坏。猜想是执行到此步骤后,内存空间被清理了,没有找到内存地址的感觉。
public static bool recognizecpositiveandnegative(picturebox pbox_disimage1, mat tempimg)
当调用此函数后,信息传递给tempimg.
mat org_被测图片 = tempimg.clone();
复制tempimg的内容时发生错误。估计tempimg的所占内存空间被清理掉了,所以就报错。
如何解决报错:
else if (revstring == "check") //检查是否防反。。。
{
// senddata("ready_ok");
g_match_image = null;
g_match_image = simplegrab.simplegrab.获取相机图像();
//获取的图像为空
if (g_match_image == null)
{
senddata("error1");
this.invoke(new eventhandler(delegate { richtextbox1.appendtext("没有获取到图像" + "\r\n"); }));
return;
}
else
{
bool result = crecognizecpositiveandnegative.recognizecpositiveandnegative(this.pbox_disimage1, g_match_image);
tempimg的上级调用位置是g_match_image,
g_match_image = simplegrab.simplegrab.获取相机图像();//即执行拍照,图像信息保存在g_match_image里面。
既然报错。那就不要传递这个参数。直接在被调用函数里面拍照。就不执行tempimg.clone()了。
---------------------
//作者:txwtech
public static bool recognizecpositiveandnegative(picturebox pbox_disimage1, mat tempimg)
{
mat org_放正模板 = new mat(application.startuppath + "\\image\\放正模板.bmp", imreadmodes.grayscale);
mat org_放反模板 = new mat(application.startuppath + "\\image\\放反模板.bmp", imreadmodes.grayscale);
// mat org_被测图片 = tempimg.clone();
mat org_被测图片 = simplegrab.simplegrab.获取相机图像();//直接在这里拍照获取图片信息。
if (tempimg.numberofchannels !=1)
{
cvinvoke.cvtcolor(org_被测图片, org_被测图片, colorconversion.bgr2gray);
}