【发布时间】:2011-11-04 20:02:21
【问题描述】:
我创建了一个从 Delphi/Lazarus 应用程序加载的轮廓检测共享库。主应用程序传递一个指向位图的指针,以由库内的函数处理。
这是库中的函数。参数“img”是指向我的位图的指针。
extern "C" {
void detect_contour(int imgWidth, int imgHeight, unsigned char * img, int &x, int &y, int &w, int &h)
{
Mat threshold_output;
vector<vector<Point> > contours;
vector<Vec4i> hierarchy;
Mat src_gray;
int thresh = 100;
int max_thresh = 255;
RNG rng(12345);
/// Load source image and convert it to gray
Mat src(imgHeight, imgWidth, CV_8UC4);
int idx;
src.data = img;
/// Convert image to gray and blur it
cvtColor( src, src_gray, CV_BGRA2GRAY );
blur( src_gray, src_gray, Size(10,10) );
/// Detect edges using Threshold
threshold( src_gray, threshold_output, thresh, 255, THRESH_BINARY );
/// Find contours
findContours( threshold_output, contours, hierarchy, CV_RETR_TREE, CV_CHAIN_APPROX_SIMPLE, Point(0, 0) );
/// Approximate contours to polygons + get bounding rects and circles
vector<vector<Point> > contours_poly( contours.size() );
vector<Rect> boundRect( contours.size() );
vector<Point2f>center( contours.size() );
vector<float>radius( contours.size() );
int lArea = 0;
int lBigger = -1;
for( int i = 0; i < contours.size(); i++ )
{
approxPolyDP( Mat(contours[i]), contours_poly[i], 3, true );
boundRect[i] = boundingRect( Mat(contours_poly[i]) );
if(lArea < boundRect[i].width * boundRect[i].height)
{
lArea = boundRect[i].width * boundRect[i].height;
lBigger = i;
}
}
if(lBigger > -1)
{
x = boundRect[lBigger].x;
y = boundRect[lBigger].y;
w = boundRect[lBigger].width;
h = boundRect[lBigger].height;
}
}
}
在 Delphi 方面,我传递了一个指向此结构数组的指针:
TBGRAPixel = packed record
blue, green, red, alpha: byte;
end;
我需要在内存中处理位图,这就是我不从库中加载文件的原因。
问题是:这是将位图分配给 cv::Mat 的正确方法吗?
我问这个是因为代码在 Linux 中运行没有问题,但在使用 Mingw 编译的 Windows 上失败。
注意:此行出现 SIGSEGV 失败:
blur( src_gray, src_gray, Size(10,10) );
编辑:仅当我在发布模式下编译 OpenCV 时才会引发 SIGSEGV,在调试模式下它可以正常工作。
提前致谢, 莱昂纳多。
【问题讨论】:
标签: c++ delphi opencv freepascal lazarus