- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 visual studio express 2012 中使用 opencv 2.4.10 在 32 位操作系统上的 windows 7 上使用 c++ 进行编码,我正在创建一个程序,该程序将从相机中抓取帧,检测边缘,然后进行一些测量基于这些边缘的像素位置和长度,但是在成功进行精明的边缘检测之后,houghlines 或 findcontours 似乎不起作用。下面是我的一些代码和相关的错误,这是怎么回事?
Mat src, srcEdge, ROImat, templ;
double lowThreshold = 105, highThreshold = lowThreshold*2.2;
int roi_xstart = 140, roi_ystart = 180, roi_width = 360, roi_height = 140, counter = 0, badpartcounter = 0;
Rect ROIrect = cvRect(roi_xstart, roi_ystart, roi_width, roi_height);
Rect matchrect = cvRect(roi_xstart - 10, roi_ystart - 10, roi_width + 20, roi_height + 20);
int main ( int argc, const char** argv )
{
int input;
if (goodpart == true)
{
while (looper)
{
cout<<"1. Capture Image\n";
cout<<"2. Detect Edges of image/create template if first image capture/read\n";
cout<<"3. Compare Template with Captured/Read Image\n";
cout<<"4. Reset counter to reset template\n";
cout<<"5. Read Image\n";
cout<<"6. HoughLines\n";
cout<<"7. Find Contours of img\n";
cout<<"8. Exit program\n";
cin >> input;
switch (input)
{
case 1:
src = FrameCapture();
break;
case 2:
srcEdge = CannyEdge ( src, templ);
cout << "counter = " << counter << endl;
break;
case 3:
MatchingMethod ( srcEdge, templ, goodpart, badpartcounter);
break;
case 4:
counter = 0;
break;
case 5:
src = ReadImage();
imshow (window1, src);
waitKey(0);
destroyWindow(window1);
break;
case 6:
HoughLineTransform (srcEdge);
break;
case 7:
ContourFinding (srcEdge);
break;
case 8:
looper = false;
break;
default:
cout << "incorrect input"<< endl;
}
destroyWindow(window1);
}
}else
{
looper = false;
}
return 0;
}
这是我创建的函数
//blur image, detect edges, result will be binary (black/white) image of edges detected
Mat CannyEdge (Mat& src, Mat& templ)
{
//declare matrices to be used in edge detection
Mat dst;
Mat src_gray;
Mat detected_edges;
//dst is same size as src, all zeros, 8bit 1 channel
dst.zeros(src.rows, src.cols, CV_8UC1);
//convert src from 8 bit 3 channel to 8 bit 1 channel grayimage, output is to src_gray
cvtColor( src, src_gray, CV_RGB2GRAY);
//applies normal blur to image to reduce image noise using a kernel of size 3, takes 8bit 1 channel grayimage of src_gray, blurs it and outputs it to detected_edges
blur( src_gray, detected_edges, Size(3,3) );
//applies canny algorithm for edge detection, takes input of detected edges and outputs back to same matrix
Canny ( detected_edges, detected_edges, lowThreshold, highThreshold, 3 );
//copies image to dst with the mask output from the canny edge detection function, so every pixel that doesn't fit the mask drops to 0, leaving the edges
src_gray.copyTo(dst, detected_edges);
//displays image of edges
threshold (dst, dst, 100, 255, 0);
namedWindow(window1, CV_WINDOW_AUTOSIZE);
imshow ( window1, dst);
waitKey(0);
destroyWindow(window1);
//if this is the first image taken, it creates a template from the specified region of interest to compare with the next images taken
if (counter == 0)
{
Mat ROImat (dst, ROIrect);
threshold (ROImat, ROImat, 100, 255, 0);
imshow ( window2, ROImat);
waitKey(0);
destroyWindow(window2);
ROImat.copyTo (templ);
}
counter++;
return dst;
}
//find countours
void ContourFinding (Mat srcEdge)
{
vector<vector<Point> > contouroutput;
vector<Vec4i> hierarchy;
Point ROIstart;
ROIstart.x = roi_xstart, ROIstart.y = roi_ystart;
Mat contourinput (srcEdge, ROIrect);
Mat contourimage = Mat::zeros(contourinput.size(), CV_8UC3);
findContours(contourinput, contouroutput, hierarchy, 0, 1, ROIstart);
int idx = 0;
for( ; idx >= 0; idx = hierarchy[idx][0] )
{
Scalar color( rand()&255, rand()&255, rand()&255 );
drawContours( contourimage, contouroutput, idx, color, CV_FILLED, 8, hierarchy, 2, ROIstart);
}
namedWindow( "Components", 1 );
imshow( "Components", contourinput);
waitKey(0);
}
//Hough Line Transformation function
void HoughLineTransform (Mat srcEdge)
{
Mat cdst;
Mat hdst (srcEdge, matchrect);
vector<Vec4i> lines;
HoughLinesP( hdst, lines, 1, CV_PI/180, 150, 30, 10 );
for( size_t i = 0; i < lines.size(); i++ )
{
line( cdst, Point(lines[i][0], lines[i][1]),
Point(lines[i][2], lines[i][3]), Scalar(0,0,255), 3, 8 );
}
}
这是轮廓抛出的错误
Unhandled exception at 0x54CD1600 (opencv_core2410.dll) in Template Matching.exe: 0xC0000005: Access violation reading location 0x00389738.
然后当我去反汇编的时候
00BD4B8E E8 C1 3B 00 00 call cv::findContours (0BD8754h)
00BD4B93 83 C4 1C add esp,1Ch
第二行是“下一个要执行的命令”
然后是休夫
Unhandled exception at 0x008952D3 in Template Matching.exe: 0xC0000005: Access violation reading location 0x0036E004.
在反汇编中
008952CD 89 A5 50 FE FF FF mov dword ptr [ebp-1B0h],esp
008952D3 8B 08 mov ecx,dword ptr [eax]
最后一行是下一条要执行的语句我不熟悉指针堆栈、内存分配或汇编代码
最佳答案
所以这是一个非常简单的修复,在 Debug模式下我包含了所有额外的库,即
opencv_core2410.lib
opencv_core2410d.lib
对于所有模块,删除发布库并仅保留 opencv_core2410d.lib 等,一切正常。当我最初设置项目属性时,我同时配置了调试和 Release模式,因此包括了每个库。
关于c++ - OpenCV c++ HoughLines 转换不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29157538/
我正在尝试从我的系统中完全删除 opencv。我试图学习 ROS,而在教程中我遇到了一个问题。创建空工作区后,我调用catkin_make 它给出了一个常见错误,我在 answers.ros 中搜索并
我在尝试逐步转移对warpAffine的调用时遇到崩溃(不是异常): void rotateImage( const Mat& source, double degree, Mat& output )
如何处理opencv gpu异常?是否有用于opencvgpu异常处理的特定错误代码集api? 我尝试了很多搜索,但只有1个错误代码,即CV_GpuNotSupported。 请帮帮我。 最佳答案 虽
笔记 我是 OpenCV(或计算机视觉)的新手,所以告诉我搜索查询会很有帮助! 我想问什么 我想编写一个从图片中提取名片的程序。 我能够提取粗略的轮廓,但反射光会变成噪点,我无法提取准确的轮廓。请告诉
我想根据像素的某个阈值将Mono16类型的Mat转换为二进制图像。我尝试使用以下内容: 阈值(img,ret,0.1,1,CV_THRESH_BINARY); 尝试编译时,出现make错误,提示: 错
我对使用GPU加速的OpenCV中的卷积函数有疑问。 使用GPU的卷积速度大约快3.5 运行时: convolve(src_32F, kernel, cresult, false, cbuffer);
我正在尝试使用非对称圆圈网格执行相机校准。 我通常找不到适合CirclesGridFinder的文档,尤其是findHoles()函数的文档。 如果您有关于此功能如何工作以及其参数含义的信息,将不胜感
在计算机上绘图和在 OpenCV 的投影仪上投影之间有什么区别吗? 一种选择是投影显示所有内容的计算机屏幕。但也许也有这样的选择,即在投影仪上精确地绘制和投影图像,仅使用计算机作为计算机器。如果我能做
我将Processing(processing.org)用于需要人脸跟踪的项目。现在的问题是由于for循环,程序将耗尽内存。我想停止循环或至少解决内存不足的问题。这是代码。 import hyperm
我有下面的代码: // Image Processing.cpp : Defines the entry point for the console application. // //Save
我正在为某些项目使用opencv。并有应解决的任务。 任务很简单。我有一张主图片,并且有一个模板,而不是将主图片与模板进行比较。我使用matchTemplate()函数。我只是好奇一下。 在文档中,我
我正在尝试使用以下命令创建级联分类器: haartraining -data haarcascade -vec samples.vec -bg negatives.dat -nstages 20 -n
我试图使用OpenCV检测黑色图像中一组形状的颜色,为此我使用了Canny检测。但是,颜色输出总是返回为黑色。 std::vector > Asteroids::DetectPoints(const
我正在尝试使用OpenCv 2.4.5从边缘查找渐变方向,但是我在使用cvSobel()时遇到问题,以下是错误消息和我的代码。我在某处读到它可能是由于浮点(??)之间的转换,但我不知道如何解决它。有帮
我正在尝试构建循环关闭算法,但是在开始开发之前,我想测试哪种功能描述符在真实数据集上效果更好。 我有两个在两个方向拍摄的走廊图像,一个进入房间,另一个离开同一个房间。因此它们代表相同的场景,但具有2个
有没有一种方法可以比较直方图,但例如要排除白色,因此白色不会影响比较。 最佳答案 白色像素有 饱和度 , S = 0 .因此,在创建直方图时很容易从计数中删除白色像素。请执行下列操作: 从 BGR 转
就像本主题的标题一样,如何在OpenCV中确定图像的特定像素(灰度或彩色)是否饱和(例如,亮度过高)? 先感谢您。 最佳答案 根据定义,饱和像素是指与强度(即灰度值或颜色分量之一)等于255相关联的像
我是OpenCV的新用户,正在从事大学项目。程序会获取输入图像,对其进行综合模糊处理,然后对其进行模糊处理。当对合成模糊图像进行反卷积时,会生成边界伪像,因为...好吧,到目前为止,我还没有实现边界条
我想知道OpenCV是haar特征还是lbp是在多尺度搜索过程中缩放图像还是像论文中提到的那样缩放特征本身? 编辑:事实证明,检测器可以缩放图像,而不是功能。有人知道为什么吗?通过缩放功能可以更快。
我在openCv中使用SVM.train命令(已定义了适当的参数)。接下来,我要使用我的算法进行分类,而不是使用svm.predict。 可能吗?我可以访问训练时生成的支持 vector 吗?如果是这
我是一名优秀的程序员,十分优秀!