在学习海康相机第二节中,释放相机的ReleaseCam()报错
#region //相机释放
public bool ReleaseCam()
{
if (!m_bCamIsOK)
return false;
int nRet;
//停止采集
stopGrab();
//关闭相机
nRet = camera.MV_CC_CloseDevice_NET();
//销毁相机
nRet =camera.MV_CC_DestroyDevice_NET();
}
#endregion