矩阵- 0xC0000005: 执行位置 0x00000000 时发生访问冲突。

问题描述

0xC0000005: 执行位置 0x00000000 时发生访问冲突。

我做的是MATLAB与vs混合编程,出现现在的问题不知道是哪的问题,请大神指教。我想看一下调用完MATLAB中的程序后生成的数据是否正确代码如下:
#include "stdafx.h"
#include"cv.h"
#include"highgui.h"
#include
#include "lvbo.h"
#include "CvvImage.h"
using namespace std;

int main()
{
IplImage* image = cvLoadImage( "H:lena.bmp", 0 );
mwArray mwdisp(image->height,image->width,mxUINT8_CLASS);
IplImage* pTemp = cvCreateImage(cvSize(image->height, image->width), IPL_DEPTH_8U, 1); //n*m创建图像
cvTranspose(image, pTemp);//m*n->n*m,复制image中的数据到ptemp中
CvMat* pMat = cvCreateMat(image->height, image->width, CV_8UC1);//pmat:n*m分配矩阵空间

    cvConvert(image, pMat);//pmat:n*m,将图像转化为矩阵,任意类型数据的矩阵

 mwdisp.SetData(pMat->data.ptr, pMat->height*pMat->width);

mwArray ImageData(image->height,image->width ,mxDOUBLE_CLASS);

shiyan1(1,ImageData,mwdisp);
double *yData=(double *)malloc(image->height*image->width);

   if(yData==NULL)
    {
        printf("failed to allocate memory for y");
        return 0;
    }
    ImageData.GetData(yData, image->height*image->width);
    int width=image->width;//图片宽度
int height = image->height;//图片高度

for (size_t row=0;row<height;row++)
{
    //uchar* ptr = (uchar*)pMatL0->data.db+row*image->width;//获得灰度值数据指针
    for (size_t cols=0;cols<width;cols++)
    {
        int intensity=yData[row*image->width+cols];
        cout<<intensity<<"  ";
    }
}
free(yData);
getchar();
return 0;

}

解决方案

指针的问题,有指针没有分配内存,或者对象没有初始化。错在哪行就检查那行的变量

解决方案二:

IplImage* image = cvLoadImage( "H:lena.bmp", 0 );
mwArray mwdisp(image->height,image->width,mxUINT8_CLASS);
IplImage* pTemp = cvCreateImage(cvSize(image->height, image->width), IPL_DEPTH_8U, 1); //n*m创建图像
cvTranspose(image, pTemp);//m*n->n*m,复制image中的数据到ptemp中
CvMat* pMat = cvCreateMat(image->height, image->width, CV_8UC1);//pmat:n*m分配矩阵空间

要注意判断指针是否为空,像第一行,文件 不存在?cvCreateImage创建失败等都有可能返回空指针!



时间: 2025-01-19 10:10:08

矩阵- 0xC0000005: 执行位置 0x00000000 时发生访问冲突。的相关文章

mfc-读取位置 0x00000000 时发生访问冲突。

问题描述 读取位置 0x00000000 时发生访问冲突. 0x1042D8D2 (mfc120ud.dll) (ConfigFileGen.exe 中)处有未经处理的异常: 0xC0000005: 读取位置 0x00000000 时发生访问冲突. 解决方案 点中断,然后看下堆栈调用,断在了哪里 解决方案二: 通常是访问空指针和使用已经被释放的内存,检查下业务逻辑

c++-求助0xC0000005: 读取位置 0x00000004 时发生访问冲突错误

问题描述 求助0xC0000005: 读取位置 0x00000004 时发生访问冲突错误 void DInputClass::GetInput() { HRESULT hr = m_KeyboardDevice->GetDeviceState(sizeof(m_keyBuffer), (void**)&m_keyBuffer); //在这里提示错误了 //获取键盘输入消息 if(hr) { m_KeyboardDevice->Acquire(); m_KeyboardDevice-&g

内存泄露-急急急 0xC0000005: 读取位置 0x003741ec 时发生访问冲突

问题描述 急急急 0xC0000005: 读取位置 0x003741ec 时发生访问冲突 void CppToLua::recvData_lua(int iCmdType, VOID * pData, WORD wDataSize) { CCLuaStack* luaStack = CCLuaEngine::defaultEngine()->getLuaStack(); if (!luaStack) return; lua_State* L = luaStack->getLuaState();

求高手解决:0xC0000005: 写入位置 0x00000064 时发生访问冲突

问题描述 求高手解决:0xC0000005: 写入位置 0x00000064 时发生访问冲突 typedef int (_stdcall*FUNA)(unsigned short Codechar* lpDataint lpDatalen);typedef int (_stdcall*FUNB)(char *lpBuf); const char * GetProtocol = ""GetProtocolData"";const char * GetReport =

语言-0xC0000005:写入位置0x0000000时发生访问冲突

问题描述 0xC0000005:写入位置0x0000000时发生访问冲突 以下是代码: #include #include #include #define TAG_SIGN "$$TAG=NMS" #define TAG_LOCK "Lock" #define TAG_DEMOD "Demod" #define TAG_CARDID "CardID" #define TAG_AREAID "AreaID"

异常处理- 0x01291dd6 处有未经处理的异常: 0xC0000005: 读取位置 0x00000018 时发生访问冲突

问题描述 0x01291dd6 处有未经处理的异常: 0xC0000005: 读取位置 0x00000018 时发生访问冲突 void results(CvSeq* conto,IplImage pContour) { for (int i=0;itotal;i++) { CvPoint p=(CvPoint*)cvGetSeqElem(conto,i); cout<<"("<x<<","<y<<")&quo

CImage出现异常,0xC0000005: 写入位置 0x003e9cd0 时发生访问冲突

问题描述 CImage出现异常,0xC0000005: 写入位置 0x003e9cd0 时发生访问冲突 一个程序要用到CImage类,但是在 debug时候 CImage cImage 出现异常,代码如下: liveImage = cvCreateImage(cvSize(imageInfo.width, imageInfo.height), IPL_DEPTH_8U, 3); EdsUInt32 DataSize = 0; CImage cImage; HRESULT hr; ![图片说明](

求大神指导双向循环链表问题【0xC0000005: 读取位置 0xfeeefeee 时发生访问冲突】

问题描述 求大神指导双向循环链表问题[0xC0000005: 读取位置 0xfeeefeee 时发生访问冲突] 小弟欲新建一双向循环链表,对链表中符合删除条件的数据进行删除操作.整个程序编译无bug,运行中断.主函数运行到新建链表后打印函数中的cout<data<<" ";VS2010显示的错误为"0xC0000005: 读取位置 0xfeeefeee 时发生访问冲突",求大神指教,是否是我新建链表的函数或宏定义中new和delete函数使用错误,

鼠标点击获得数据-代码正常运行一会后出现 0xC0000005: 读取位置 0x00000010 时发生访问冲突

问题描述 代码正常运行一会后出现 0xC0000005: 读取位置 0x00000010 时发生访问冲突 #include #include #include #include #include #include #include using namespace std; typedef struct V { GLdouble x; GLdouble y; GLdouble z; GLdouble X; GLdouble Y; GLdouble Z; GLdouble XN; GLdouble