- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我编写了以下代码来从视频或相机中检测到一个人并在其周围绘制一个最小矩形。
它在装有 Visual Studio 2012 Express 和 OpenCV 2.4.9 的 Windows 7 64 位系统上运行良好。当我在 Ubuntu 13.04 64 位下与 Eclipse 3.8 和 OpenCV 主分支(whcih 是 3.0) 下使用相同的代码时,它说“'BackgroundSubtractorMOG2' 类型必须实现继承的纯虚拟方法 xxx”,其中xxx 继承自 'BackgroundSubtractor'。
来自@VictorL BackgroundSubtractorMOG2 & OpenCV ,他的 BackgroundSubtractorMOG2 代码在 ubuntu 12.10 64 位和 OpenCV 2.4.4a 下工作。
所以我想知道两个版本的 OpenCV 之间“BackgroundSubtractorMOG2”的实现是否不同,或者编译器与 Ubuntu 12.10 和 13.04 不同。谁有类似的问题,我该如何解决。
提前致谢。
/*
1. Detection
I just use Gaussian Mixture Model(Background Subtraction) here
*/
#include <iostream>
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/video/background_segm.hpp>
using namespace std;
using namespace cv;
int detection();
#define CAMERA 0
#if CAMERA
VideoCapture cap(-1);
#else
VideoCapture cap("group.webm");
#endif
int main(){
if(detection() == -1){
cout << "Detection failed" << endl;
return 1;
}
return 0;
}
int detection(){
//check whether the camera is opened
if(!cap.isOpened()){
cout << "Camera failed to open" << endl;
return -1;
}
Mat originalVideo, currentMat, diffMat, bgMat, binMat, erodeMat, morphMat;
Mat filledMat;
vector<vector<Point> > contours;
namedWindow("currentMat", WINDOW_NORMAL);
namedWindow("diffMat", WINDOW_NORMAL);
namedWindow("erodeMat", WINDOW_NORMAL);
namedWindow("erodeMat2", WINDOW_NORMAL);
namedWindow("erodeMat3", WINDOW_NORMAL);
namedWindow("dilate", WINDOW_NORMAL);
namedWindow("binMat", WINDOW_NORMAL);
//Gaussian Mixture-based Background/Foreground Segmentation Algorithm.
BackgroundSubtractorMOG2 gaussianBgModel;
gaussianBgModel.set("nmixtures", 3);
while(1){
// get a new frame from camera
cap >> currentMat;
if(currentMat.empty())
break;
imshow("currentMat", currentMat);
//get the foreground mask
gaussianBgModel.operator()(currentMat, diffMat);
imshow("diffMat", diffMat);
gaussianBgModel.getBackgroundImage(bgMat);
//do threshold to get binary imahe
threshold(diffMat, binMat, 252, 255, 0); // Threshold Type 0: Binary
imshow("binMat", binMat);
blur(binMat, erodeMat, Size(4, 4));
imshow("erodeMat", erodeMat);
threshold(erodeMat, erodeMat, 256/6, 255, 0);
imshow("erodeMat2", erodeMat);
int operation = 1 + 2;
int morph_size = 1;
Mat element = getStructuringElement(0,
Size(4 * morph_size + 1, 8 * morph_size + 1),
Point(morph_size, morph_size));
Mat elementrect = getStructuringElement(0,
Size(2 * morph_size + 1, 16 * morph_size + 1),
Point(morph_size, morph_size));
dilate(erodeMat, morphMat, element);
imshow("dilate", morphMat);
erode(morphMat, morphMat, elementrect);
imshow("erodeMat3", morphMat);
//--------AFTER ABOVE, PEOPLE IS IDENTIFIED--------------------
//--------NEXT TO FIND COUNTOUR
// Find contours
//get a copy of the filtered img
filledMat = morphMat.clone();
findContours(filledMat, contours, CV_RETR_TREE,
CV_CHAIN_APPROX_SIMPLE);
vector<vector<Point> > contours_poly(contours.size());
vector<Rect> boundRect(contours.size());
vector<Point2f> centers(contours.size());
// cascadeMat = Mat::zeros(filledMat.size(), 1);
// Get Bound Rect
for (unsigned i = 0; i < contours.size(); i++) {
approxPolyDP(Mat(contours[i]), contours_poly[i], 3, true);
boundRect[i] = boundingRect(Mat(contours_poly[i]));
}
/// Draw polygonal contour + bonding rects
Mat drawing = Mat::zeros( filledMat.size(), CV_8UC3 );
for(unsigned i = 0; i< contours.size(); i++ ){
Scalar color = Scalar( 255, 0, 0 );
//drawContours( drawing, contours_poly, i, color, 1, 8, vector<Vec4i>(), 0, Point() );
if(boundRect[i].area() > 3000){
rectangle( drawing, boundRect[i].tl(), boundRect[i].br(), color, 2, 8, 0 );
Mat roi(currentMat, boundRect[i]);
namedWindow("ROI", CV_WINDOW_NORMAL);
imshow( "ROI", roi );
}
}
/// Show in a window
namedWindow( "Contours", CV_WINDOW_NORMAL );
imshow( "Contours", drawing );
if(waitKey(30) >= 0) break;
}
return 0;
}
最佳答案
如果您不想降级 opencv,对于 opencv 3.0,您可能需要关注 opencv documentation
主要区别是:
pMOG2 = createBackgroundSubtractorMOG2(); //create Background Subtractor objects
pMOG2->apply(frame, fgMaskMOG2); //update the background model
确保链接必要的库。
关于c++ - BackgroundSubtractorMOG2 在 VS2012 下工作,在 ubuntu 上失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23881785/
我是 Mercurial 的新手,并且不知何故仍处于评估过程中,所以这四个概念对我来说有点困惑。有些被提到等同于 Git 的 Staging/Index 概念,有些甚至比 Git 的 Staging
关闭。这个问题需要更多focused .它目前不接受答案。 想改善这个问题吗?更新问题,使其仅关注一个问题 editing this post . 6 个月前关闭。 Improve this ques
任何人都可以给我详细信息吗? 例如? #ID 是属性、特性、选择器还是 anchor ? 默认属性和默认属性是不同的东西吗? 这些都是标签还是元素? 我们将对此说些什么 这个 ..... 还有这些
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 8 年前。 Improve this qu
我有一个由 Javascript 填充的下拉列表。 在决定加载时显示的默认值时,我意识到以下属性显示的值完全相同: innerText innerHTML label text textContent
我可以知道每个 Exec 之间有什么区别吗? , ExecWait , ExecShell , nsExec::Exec , nsExec::ExecToLog, nsExec::ExecToStac
当您处于版本 1 和版本 2 之间时,您会如何维护您的软件? 从我的角度来看,“补丁”、“修补程序”、“维护版本”、“服务包”等术语都很模糊,根据与您交谈的对象不同,定义也不同。 您如何称呼版本之间的
我刚刚发现在 ES6 中有一个新的数学方法:Math.trunc . 我在 MDN article 中阅读了它的描述。 , 听起来像使用 |0 . 此外,>0 , &-1 , ^0也做类似的事情(感谢
我想知道我的 StackPanel 所有项目的高度。 有什么区别: Height - 获取或设置元素的建议高度。 ActualHeight - 获取该元素的渲染高度。 (只读) ExtentHeigh
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 9 年前。 Improve this
我对所有声称以某种方式阻止计算的内置 Mathematica 函数感到困惑:Unevaluated、Defer、Hold ,以及超过 6 个 Hold* 形式。 Mathematica 文档只是单独解
我什至不确定正确的术语,所以让我从我的目标开始:拥有一个简单的应用程序(“Data Doler”),它只会将大量数据从文件读取到内存中,然后提供服务将该数据切片到名为“Data Lapper”的单个多
我刚刚开始在我的项目中使用 Elasticsearch,我想像 sql 关键字一样搜索 '喜欢%' 做。 谁能解释一下 之间的区别通配符 , 前缀 , 查询字符串和 正则表达式 ? 哪个可以搜索最好性
由于我对任何主流浏览器(Firefox、Chrome、Opera)都不太满意,而且我尝试过的不太受欢迎的浏览器(近十几种)都没有,所以我决定 DIY 并制作一个网页我想要最好的浏览器。 主要目标是让它
我知道如何使用 Python 解析页面。我的问题是哪种方法是所有解析技术中最快的,其他方法的速度有多快? 我知道的解析技术有Xpath、DOM、BeautifulSoup,还有使用Python的fin
我试图从正在解析的命令行中找出哪个函数最适合将十进制、十六进制或八进制数转换为 int 最好——在不知道输入的情况下事先。 目标是使用一个函数来识别不同类型的输入并将其分配给它的整数 (int) 值,
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我们需要在我们的网站上显示酒吧、餐馆和剧院等各种场所的元信息(例如,地址、姓名)。 理想情况下,用户会输入地点名称以及邮政编码,我们会提供最接近的匹配项。 人们将哪些 API 用于类似的地理定位目的?
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
我正在创建我的第一个 Web 应用程序,我真的很困惑应该使用什么技术。 我的应用程序需要看起来很严肃(像一个应用程序),它不需要很多色彩缤纷的图形界面。它只需要一个工具栏、一个标签栏、一个拆分面板(最
我是一名优秀的程序员,十分优秀!