一方面为了学习,一方面按照老师和项目的要求接触到了前景提取的相关知识,具体的方法有很多,帧差、背景减除(GMM、CodeBook、 SOBS、 SACON、 VIBE、 W4、多帧平均……)、光流(稀疏光流、稠密光流)、运动竞争(Motion Competition)、运动模版(运动历史图像)、时间熵……等等。
更为具体的资料可以参考一下链接,作者做了很好的总结。点击打开链接http://blog.csdn.net/zouxy09/article/details/9622285

我只要针对作者提供的源代码,加上我的理解最代码捉了做了相关的注释,便于自己对代码的阅读和与大家的交流,如果不妥之处,稀罕大家多多提出,共同进步

ViBe.h(头文件,一般做申明函数、类使用,不做具体定义)

  1. #pragma once
  2. #include <iostream>
  3. #include "opencv2/opencv.hpp"
  4. using namespace cv;
  5. using namespace std;
  6. #define NUM_SAMPLES 20      //每个像素点的样本个数
  7. #define MIN_MATCHES 2       //#min指数
  8. #define RADIUS 20       //Sqthere半径
  9. #define SUBSAMPLE_FACTOR 16 //子采样概率,决定背景更新的概率
  10. class ViBe_BGS
  11. {
  12. public:
  13. ViBe_BGS(void);  //构造函数
  14. ~ViBe_BGS(void);  //析构函数,对开辟的内存做必要的清理工作
  15. void init(const Mat _image);   //初始化
  16. void processFirstFrame(const Mat _image); //利用第一帧进行建模
  17. void testAndUpdate(const Mat _image);  //判断前景与背景,并进行背景跟新
  18. Mat getMask(void){return m_mask;};  //得到前景
  19. private:
  20. Mat m_samples[NUM_SAMPLES];  //每一帧图像的每一个像素的样本集
  21. Mat m_foregroundMatchCount;  //统计像素被判断为前景的次数,便于跟新
  22. Mat m_mask;  //前景提取后的一帧图像
  23. };

ViBe.cpp(上面所提到的申明的具体定义)

  1. #include <opencv2/opencv.hpp>
  2. #include <iostream>
  3. #include "ViBe.h"
  4. using namespace std;
  5. using namespace cv;
  6. int c_xoff[9] = {-1,  0,  1, -1, 1, -1, 0, 1, 0};  //x的邻居点,9宫格
  7. int c_yoff[9] = {-1,  0,  1, -1, 1, -1, 0, 1, 0};  //y的邻居点
  8. ViBe_BGS::ViBe_BGS(void)
  9. {
  10. }
  11. ViBe_BGS::~ViBe_BGS(void)
  12. {
  13. }
  14. /**************** Assign space and init ***************************/
  15. void ViBe_BGS::init(const Mat _image)  //成员函数初始化
  16. {
  17. for(int i = 0; i < NUM_SAMPLES; i++) //可以这样理解,针对一帧图像,建立了20帧的样本集
  18. {
  19. m_samples[i] = Mat::zeros(_image.size(), CV_8UC1);  //针对每一帧样本集的每一个像素初始化为8位无符号0,单通道
  20. }
  21. m_mask = Mat::zeros(_image.size(),CV_8UC1); //初始化
  22. m_foregroundMatchCount = Mat::zeros(_image.size(),CV_8UC1);  //每一个像素被判断为前景的次数,初始化
  23. }
  24. /**************** Init model from first frame ********************/
  25. void ViBe_BGS::processFirstFrame(const Mat _image)
  26. {
  27. RNG rng;    //随机数产生器
  28. int row, col;
  29. for(int i = 0; i < _image.rows; i++)
  30. {
  31. for(int j = 0; j < _image.cols; j++)
  32. {
  33. for(int k = 0 ; k < NUM_SAMPLES; k++)
  34. {
  35. // Random pick up NUM_SAMPLES pixel in neighbourhood to construct the model
  36. int random = rng.uniform(0, 9);  //随机产生0-9的随机数,主要用于定位中心像素的邻域像素
  37. row = i + c_yoff[random]; //定位中心像素的邻域像素
  38. if (row < 0)   //下面四句主要用于判断是否超出边界
  39. row = 0;
  40. if (row >= _image.rows)
  41. row = _image.rows - 1;
  42. col = j + c_xoff[random];
  43. if (col < 0)    //下面四句主要用于判断是否超出边界
  44. col = 0;
  45. if (col >= _image.cols)
  46. col = _image.cols - 1;
  47. m_samples[k].at<uchar>(i, j) = _image.at<uchar>(row, col);  //将相应的像素值复制到样本集中
  48. }
  49. }
  50. }
  51. }
  52. /**************** Test a new frame and update model ********************/
  53. void ViBe_BGS::testAndUpdate(const Mat _image)
  54. {
  55. RNG rng;
  56. for(int i = 0; i < _image.rows; i++)
  57. {
  58. for(int j = 0; j < _image.cols; j++)
  59. {
  60. int matches(0), count(0);
  61. float dist;
  62. while(matches < MIN_MATCHES && count < NUM_SAMPLES) //逐个像素判断,当匹配个数大于阀值MIN_MATCHES,或整个样本集遍历完成跳出
  63. {
  64. dist = abs(m_samples[count].at<uchar>(i, j) - _image.at<uchar>(i, j)); //当前帧像素值与样本集中的值做差,取绝对值
  65. if (dist < RADIUS)  //当绝对值小于阀值是,表示当前帧像素与样本值中的相似
  66. matches++;
  67. count++;  //取样本值的下一个元素作比较
  68. }
  69. if (matches >= MIN_MATCHES)  //匹配个数大于阀值MIN_MATCHES个数时,表示作为背景
  70. {
  71. // It is a background pixel
  72. m_foregroundMatchCount.at<uchar>(i, j) = 0;  //被检测为前景的个数赋值为0
  73. // Set background pixel to 0
  74. m_mask.at<uchar>(i, j) = 0;  //该像素点值也为0
  75. // 如果一个像素是背景点,那么它有 1 / defaultSubsamplingFactor 的概率去更新自己的模型样本值
  76. int random = rng.uniform(0, SUBSAMPLE_FACTOR);   //以1 / defaultSubsamplingFactor概率跟新背景
  77. if (random == 0)
  78. {
  79. random = rng.uniform(0, NUM_SAMPLES);
  80. m_samples[random].at<uchar>(i, j) = _image.at<uchar>(i, j);
  81. }
  82. // 同时也有 1 / defaultSubsamplingFactor 的概率去更新它的邻居点的模型样本值
  83. random = rng.uniform(0, SUBSAMPLE_FACTOR);
  84. if (random == 0)
  85. {
  86. int row, col;
  87. random = rng.uniform(0, 9);
  88. row = i + c_yoff[random];
  89. if (row < 0)   //下面四句主要用于判断是否超出边界
  90. row = 0;
  91. if (row >= _image.rows)
  92. row = _image.rows - 1;
  93. random = rng.uniform(0, 9);
  94. col = j + c_xoff[random];
  95. if (col < 0)   //下面四句主要用于判断是否超出边界
  96. col = 0;
  97. if (col >= _image.cols)
  98. col = _image.cols - 1;
  99. random = rng.uniform(0, NUM_SAMPLES);
  100. m_samples[random].at<uchar>(row, col) = _image.at<uchar>(i, j);
  101. }
  102. }
  103. else  //匹配个数小于阀值MIN_MATCHES个数时,表示作为前景
  104. {
  105. // It is a foreground pixel
  106. m_foregroundMatchCount.at<uchar>(i, j)++;
  107. // Set background pixel to 255
  108. m_mask.at<uchar>(i, j) =255;
  109. //如果某个像素点连续N次被检测为前景,则认为一块静止区域被误判为运动,将其更新为背景点
  110. if (m_foregroundMatchCount.at<uchar>(i, j) > 50)
  111. {
  112. int random = rng.uniform(0, SUBSAMPLE_FACTOR);
  113. if (random == 0)
  114. {
  115. random = rng.uniform(0, NUM_SAMPLES);
  116. m_samples[random].at<uchar>(i, j) = _image.at<uchar>(i, j);
  117. }
  118. }
  119. }
  120. }
  121. }
  122. }

main.cpp(你懂的……

  1. #include <opencv2/opencv.hpp>
  2. #include "ViBe.h"
  3. #include <iostream>
  4. #include <cstdio>
  5. #include<stdlib.h>
  6. using namespace cv;
  7. using namespace std;
  8. int main(int argc, char* argv[])
  9. {
  10. Mat frame, gray, mask;
  11. VideoCapture capture;
  12. capture.open("E:\\overpass\\11.avi");
  13. if (!capture.isOpened())
  14. {
  15. cout<<"No camera or video input!\n"<<endl;
  16. return -1;
  17. }
  18. ViBe_BGS Vibe_Bgs; //定义一个背景差分对象
  19. int count = 0; //帧计数器,统计为第几帧
  20. while (1)
  21. {
  22. count++;
  23. capture >> frame;
  24. if (frame.empty())
  25. break;
  26. cvtColor(frame, gray, CV_RGB2GRAY); //转化为灰度图像
  27. if (count == 1)  //若为第一帧
  28. {
  29. Vibe_Bgs.init(gray);
  30. Vibe_Bgs.processFirstFrame(gray); //背景模型初始化
  31. cout<<" Training GMM complete!"<<endl;
  32. }
  33. else
  34. {
  35. Vibe_Bgs.testAndUpdate(gray);
  36. mask = Vibe_Bgs.getMask();
  37. morphologyEx(mask, mask, MORPH_OPEN, Mat());
  38. imshow("mask", mask);
  39. }
  40. imshow("input", frame);
  41. if ( cvWaitKey(10) == 'q' )
  42. break;
  43. }
  44. system("pause");
  45. return 0;
  46. }

运动目标前景检测之ViBe源代码分析的更多相关文章

  1. [转]前景检测算法--ViBe算法

    原文:http://blog.csdn.net/zouxy09/article/details/9622285 转自:http://blog.csdn.net/app_12062011/article ...

  2. OpenCV:OpenCV目标检测Hog+SWindow源代码分析

    参考文章:OpenCV中的HOG+SVM物体分类 此文主要描述出HOG分类的调用堆栈. 使用OpenCV作图像检测, 使用HOG检测过程,其中一部分源代码如下: 1.HOG 检测底层栈的检测计算代码: ...

  3. OpenCV:OpenCV目标检测Adaboost+haar源代码分析

    使用OpenCV作图像检测, Adaboost+haar决策过程,其中一部分源代码如下: 函数调用堆栈的底层为: 1.使用有序决策桩进行预测 template<class FEval> i ...

  4. 运动检测(前景检测)之(一)ViBe

    运动检测(前景检测)之(一)ViBe zouxy09@qq.com http://blog.csdn.net/zouxy09 因为监控发展的需求,目前前景检测的研究还是很多的,也出现了很多新的方法和思 ...

  5. ViBe(Visual Background extractor)背景建模或前景检测

    ViBe算法:ViBe - a powerful technique for background detection and subtraction in video sequences 算法官网: ...

  6. paper 83:前景检测算法_1(codebook和平均背景法)

    前景分割中一个非常重要的研究方向就是背景减图法,因为背景减图的方法简单,原理容易被想到,且在智能视频监控领域中,摄像机很多情况下是固定的,且背景也是基本不变或者是缓慢变换的,在这种场合背景减图法的应用 ...

  7. 运动检测(前景检测)之(二)混合高斯模型GMM

    运动检测(前景检测)之(二)混合高斯模型GMM zouxy09@qq.com http://blog.csdn.net/zouxy09 因为监控发展的需求,目前前景检测的研究还是很多的,也出现了很多新 ...

  8. [转]运动检测(前景检测)之(二)混合高斯模型GMM

    转自:http://blog.csdn.net/zouxy09/article/details/9622401 因为监控发展的需求,目前前景检测的研究还是很多的,也出现了很多新的方法和思路.个人了解的 ...

  9. 目标检测之vibe---ViBe(Visual Background extractor)背景建模或前景检测

    ViBe算法:ViBe - a powerful technique for background detection and subtraction in video sequences 算法官网: ...

随机推荐

  1. 【Hbase一】基础

    此笔记仅用于作者记录复习使用,如有错误地方欢迎留言指正,作者感激不尽,如有转载请指明出处 Hbase基础 Hbase基础 Hbase定义 行存储 v s 列存储 Hbase数据模型 Hbase物理模型 ...

  2. django的模型和基本的脚本命令

    python manage.py startproject project_name  创建一个django项目 python manage.py startapp app_name  创建一个app ...

  3. 数据结构的C语言基础

    数据结构的C语言基础 1. 数据输出 printf()函数为格式输出函数,它存在于标准函数库中,在C语言程序中可以直接调用,但程序源文件的开头必须包含以下命令: #include < stdi ...

  4. 函数名前加 & 符号的深入理解 C++

    #include <iostream> using namespace std; int& test_str() { ; return a; //通过返回 a 的地址来进行 值的返 ...

  5. spring boot打包问题

    java.lang.IllegalArgumentException: No auto configuration classes found in META-INF/spring.factories ...

  6. TCD产品技术参考资料

    1.Willis环 https://en.wikipedia.org/wiki/Circle_of_Willis 2.TCD仿真软件 http://www.transcranial.com/index ...

  7. (长期更新)OI常用模板

    代码很简单的模板就不收录了. DFT 离散傅立叶变换 void dft(pdd *a,int l,bool r){ int i,j=l/2,k; for(i=1;i<l;++i){ if(i&l ...

  8. Intellij Idea 2016服务破解方法

    技术交流群:233513714 第一种破解方法 我使用的是官网下载的idea Ultimate版,也就是任何功能不受限制的版本,但是这个版本安装过后只能免费使用一个月. 当你的idea出现这种情况 也 ...

  9. "Cannot open source file "Wire.h" " in Arduino Development

    0. Environment Windows 8 x64 Arduino 1.0.5 Visual studio 2012 Visual micro Arduino 1. Steps Add &quo ...

  10. VM打开虚拟机文件报错

    用VM打开以前的虚拟机文件报错 Cannot open the disk 'F:/****.vmdk' or one of the snapshot disks it depends on. 这种问题 ...