我在VC ++中编写了blob跟踪算法。我在控制台程序中运行它,它只是表现得非常出色。
现在,我想用c#编写我的应用程序的其余部分,所以我制作了一个VC ++代码的dll。我用C#代码调用这个dll。
现在,在C#中,运行大约2分钟后,应用程序抛出错误;
Insufficient memory (Out of memory)
in function cvAlloc, .\cxalloc.cpp(111)
我不在代码中,使用cvAlloc分配内存所以我只是想知道导致它抛出此错误的原因。而且,当我在控制台中运行它时,相同的代码运行了几个小时而没有成为它的dll。
任何人都可以帮助我解决导致它的原因吗?
谢谢。
代码:
int NumberBlob = 0, PosX = 0, PosY = 0;
IplImage *img = 0;
IplImage *gray_img = 0;
IplImage *thres_img = 0;
IplImage *blobs_img = 0;
int key = 0;
/* Always check if the program can find a device */
if ( !capture )
{
data->status = 0;
return;
}
CBlobResult blobs;
CBlob *currentBlob;
CvRect rect;
int frame_count = 0;
int i = 0;
int screen_x = GetSystemMetrics(SM_CXSCREEN);
int screen_y = GetSystemMetrics(SM_CYSCREEN);
int mouse_x,mouse_y;
double x=0;
double y=0;
if( frame_count == 0 )
{
/* Obtain a frame from the device */
img = cvQueryFrame( capture );
/* Always check if the device returns a frame */
if( !img )
{
data->status = 1;
return;
}
gray_img = cvCreateImage( cvGetSize(img), img->depth, 1);
thres_img = cvCreateImage( cvGetSize(img), img->depth, 1);
blobs_img = cvCreateImage( cvGetSize(img), img->depth, 3);
}
/* Obtain a frame from the device */
img = cvQueryFrame( capture );
/* Always check if the device returns a frame */
if( !img )
{
data->status=2;
return;
}
frame_count = frame_count + 1;
/* Flip image once, after blob processing it is flipped back */
cvFlip(img,img,NULL);
/* Convert image from Color to grayscale and
then to binary (thresholded at 180) */
cvCvtColor(img,gray_img,CV_RGB2GRAY);
cvThreshold(gray_img,thres_img,200,255,CV_THRESH_BINARY);
/* Find Blobs that are White, Hence 'uchar backgroundColor = 0' (Black) */
blobs = CBlobResult(thres_img, NULL,0);
/* Remove blobs if it does not cover minimum area specified below */
blobs.Filter( blobs, B_EXCLUDE, CBlobGetArea(),B_LESS,5,50);
/* Number of blobs */
NumberBlob = blobs.GetNumBlobs();
/* 'i' points to blob 0, i.e., first blob */
/* If some blobs are detected then find the first blob */
if(i==0 && blobs.GetNumBlobs()>i)
{
currentBlocb = blobs.GetBlob(i);
rect = currentBlob->GetBoundingBox();
PosX = currentBlob->MinX();
PosY = currentBlob->MinY();
currentBlob->FillBlob( blobs_img, CV_RGB(255,0,0));
}
cvZero(blobs_img);
data->X=PosX;
data->Y=PosY;
data->status=1;
return;
这就是我正在做的事情。当我在一个独立的控制台应用程序中运行代码时,这个逻辑工作正常,但是当我将它包装在一个dll中并从c#调用它时失败。
除此之外,我也有一个结构
struct resultData
{
int X, Y, status;
char* error;
};
但我想知道它是否会抛出OpenCV异常,如果有的话。
答案 0 :(得分:1)
内存泄漏怎么办?你似乎没有释放所有资源,如指向图像和blob的指针。那应该是你的主要关注点。而cvAlloc()是OpenCV用于内存分配的内部函数。