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);
}