基于特征点的跟踪算法大致可以分为两个步骤:

1)探测当前帧的特征点;

2)通过当前帧和下一帧灰度比较,估计当前帧特征点在下一帧的位置;

3)过滤位置不变的特征点,余下的点就是目标了。

特征点包括:

1、Harris

2、SURF

3、FAST

4、STAR

5、SIFT

6、ORB

7、MSER

8、GETT

9、Dense

10、SimpleBlob

光流的基本方法:

1、基于梯度

2、基于匹配

3、基于能量

4、基于相位

光流法首先假设的条件:

1、亮度恒定

2、小运动

3、空间一致

使用函数:

goodFeaturesToTrack()——寻找图像中具有大特征的角点

calcOpticalFlowPyrLK()——计算一个稀疏特征集的光流

两篇博客链接:

Opencv学习笔记(九)光流法

http://blog.csdn.net/crzy_sparrow/article/details/7407604

【算法分析】Lucas–Kanade光流算法

http://www.cnblogs.com/gnuhpc/archive/2012/12/04/2802124.html

OpenCV3编程入门——光流法的代码

//#include "stdafx.h"#include <iostream>
#include <opencv2/opencv.hpp>
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>  // Gaussian Blur
#include <opencv2/ml/ml.hpp>
#include <opencv2/contrib/contrib.hpp>using namespace cv;
using namespace std;void duan_OpticalFlow(Mat &frame, Mat & result);
bool addNewPoints();
bool acceptTrackedPoint(int i);Mat curgray; // 当前图片
Mat pregray;    // 预测图片
vector<Point2f> point[2]; // point0为特征点的原来位置,point1为特征点的新位置
vector<Point2f> initPoint;    // 初始化跟踪点的位置
vector<Point2f> features; // 检测的特征
int maxCount = 500;            // 检测的最大特征数
double qLevel = 0.01;  // 特征检测的等级
double minDist = 10.0; // 两特征点之间的最小距离
vector<uchar> status; // 跟踪特征的状态,特征的流发现为1,否则为0
vector<float> err;int main()
{Mat matSrc;Mat matRst;VideoCapture cap("Monkey.mp4");int totalFrameNumber = cap.get(CV_CAP_PROP_FRAME_COUNT);// perform the tracking processprintf("Start the tracking process, press ESC to quit.\n");for (int nFrmNum = 0; nFrmNum < totalFrameNumber; nFrmNum++) {// get frame from the videocap >> matSrc;if (!matSrc.empty()){duan_OpticalFlow(matSrc, matRst);cout << "This picture is " << nFrmNum << endl;}else{cout << "Error : Get picture is empty!" << endl;}if (waitKey(1) == 27) break;}waitKey(0);return 0;}void duan_OpticalFlow(Mat &frame, Mat & result)
{cvtColor(frame, curgray, CV_BGR2GRAY);frame.copyTo(result);if (addNewPoints()){goodFeaturesToTrack(curgray, features, maxCount, qLevel, minDist);point[0].insert(point[0].end(), features.begin(), features.end());initPoint.insert(initPoint.end(), features.begin(), features.end());}if (pregray.empty()){curgray.copyTo(pregray);}calcOpticalFlowPyrLK(pregray, curgray, point[0], point[1], status, err);int k = 0;for (size_t i = 0; i<point[1].size(); i++){if (acceptTrackedPoint(i)){initPoint[k] = initPoint[i];point[1][k++] = point[1][i];}}point[1].resize(k);initPoint.resize(k);for (size_t i = 0; i<point[1].size(); i++){line(result, initPoint[i], point[1][i], Scalar(0, 0, 255));circle(result, point[1][i], 3, Scalar(0, 255, 0), -1);}swap(point[1], point[0]);swap(pregray, curgray);imshow("Optical Flow Demo", result);//waitKey(50);
}bool addNewPoints()
{return point[0].size() <= 10;
}bool acceptTrackedPoint(int i)
{return status[i] && ((abs(point[0][i].x - point[1][i].x) + abs(point[0][i].y - point[1][i].y)) > 2);
}

====================OpenCV Source Code===============

enum
{OPTFLOW_USE_INITIAL_FLOW = CV_LKFLOW_INITIAL_GUESSES,OPTFLOW_LK_GET_MIN_EIGENVALS = CV_LKFLOW_GET_MIN_EIGENVALS,OPTFLOW_FARNEBACK_GAUSSIAN = 256
};//! constructs a pyramid which can be used as input for calcOpticalFlowPyrLK
CV_EXPORTS_W int buildOpticalFlowPyramid(InputArray img, OutputArrayOfArrays pyramid,Size winSize, int maxLevel, bool withDerivatives = true,int pyrBorder = BORDER_REFLECT_101, int derivBorder = BORDER_CONSTANT,bool tryReuseInputImage = true);//! computes sparse optical flow using multi-scale Lucas-Kanade algorithm
CV_EXPORTS_W void calcOpticalFlowPyrLK( InputArray prevImg, InputArray nextImg,InputArray prevPts, CV_OUT InputOutputArray nextPts,OutputArray status, OutputArray err,Size winSize=Size(21,21), int maxLevel=3,TermCriteria criteria=TermCriteria(TermCriteria::COUNT+TermCriteria::EPS, 30, 0.01),int flags=0, double minEigThreshold=1e-4);//! computes dense optical flow using Farneback algorithm
CV_EXPORTS_W void calcOpticalFlowFarneback( InputArray prev, InputArray next,CV_OUT InputOutputArray flow, double pyr_scale, int levels, int winsize,int iterations, int poly_n, double poly_sigma, int flags );//! estimates the best-fit Euqcidean, similarity, affine or perspective transformation
// that maps one 2D point set to another or one image to another.
CV_EXPORTS_W Mat estimateRigidTransform( InputArray src, InputArray dst,bool fullAffine);//! computes dense optical flow using Simple Flow algorithm
CV_EXPORTS_W void calcOpticalFlowSF(Mat& from,Mat& to,Mat& flow,int layers,int averaging_block_size,int max_flow);CV_EXPORTS_W void calcOpticalFlowSF(Mat& from,Mat& to,Mat& flow,int layers,int averaging_block_size,int max_flow,double sigma_dist,double sigma_color,int postprocess_window,double sigma_dist_fix,double sigma_color_fix,double occ_thr,int upscale_averaging_radius,double upscale_sigma_dist,double upscale_sigma_color,double speed_up_thr);class CV_EXPORTS DenseOpticalFlow : public Algorithm
{
public:virtual void calc(InputArray I0, InputArray I1, InputOutputArray flow) = 0;virtual void collectGarbage() = 0;
};// Implementation of the Zach, Pock and Bischof Dual TV-L1 Optical Flow method
//
// see reference:
//   [1] C. Zach, T. Pock and H. Bischof, "A Duality Based Approach for Realtime TV-L1 Optical Flow".
//   [2] Javier Sanchez, Enric Meinhardt-Llopis and Gabriele Facciolo. "TV-L1 Optical Flow Estimation".
CV_EXPORTS Ptr<DenseOpticalFlow> createOptFlow_DualTVL1();

==============================================

// Hand01.cpp : 定义控制台应用程序的入口点。
//#include "stdafx.h"#include <stdio.h>
#include <iostream>
#include <opencv2/opencv.hpp>
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>  // Gaussian Blur
#include <opencv2/ml/ml.hpp>
#include <opencv2/contrib/contrib.hpp>#include <opencv2/video/tracking.hpp>using namespace cv;static void convertFlowToImage(const Mat &flow_x, const Mat &flow_y, Mat &img_x, Mat &img_y, double lowerBound, double higherBound) {
#define CAST(v, L, H) ((v) > (H) ? 255 : (v) < (L) ? 0 : cvRound(255*((v) - (L))/((H)-(L))))for (int i = 0; i < flow_x.rows; ++i) {for (int j = 0; j < flow_y.cols; ++j) {float x = flow_x.at<float>(i, j);float y = flow_y.at<float>(i, j);img_x.at<uchar>(i, j) = CAST(x, lowerBound, higherBound);img_y.at<uchar>(i, j) = CAST(y, lowerBound, higherBound);}}
#undef CAST
}static void drawOptFlowMap(const Mat& flow, Mat& cflowmap, int step, double, const Scalar& color)
{for (int y = 0; y < cflowmap.rows; y += step)for (int x = 0; x < cflowmap.cols; x += step){const Point2f& fxy = flow.at<Point2f>(y, x);line(cflowmap, Point(x, y), Point(cvRound(x + fxy.x), cvRound(y + fxy.y)),color);circle(cflowmap, Point(x, y), 2, color, -1);}
}int main(int argc, char** argv)
{// IO operationconst char* keys ={"{ f  | vidFile      | ex2.avi | filename of video }""{ x  | xFlowFile    | flow_x | filename of flow x component }""{ y  | yFlowFile    | flow_y | filename of flow x component }""{ i  | imgFile      | flow_i | filename of flow image}""{ b  | bound | 15 | specify the maximum of optical flow}"};//CommandLineParser cmd(argc, argv, keys);//string vidFile = cmd.get<string>("vidFile");//string xFlowFile = cmd.get<string>("xFlowFile");//string yFlowFile = cmd.get<string>("yFlowFile");//string imgFile = cmd.get<string>("imgFile");//int bound = cmd.get<int>("bound");string vidFile = "vidFile";string xFlowFile = "xFlowFile";string yFlowFile = "yFlowFile";string imgFile = "imgFile";int bound = 80;namedWindow("video", 1);namedWindow("imgX", 1);namedWindow("imgY", 1);namedWindow("Demo", 1);//VideoCapture capture(vidFile);VideoCapture capture("Monkey.mp4");if (!capture.isOpened()) {printf("Could not initialize capturing..\n");return -1;}int frame_num = 0;Mat image, prev_image, prev_grey, grey, frame, flow, cflow;while (true) {capture >> frame;if (frame.empty())break;imshow("video", frame);if (frame_num == 0) {image.create(frame.size(), CV_8UC3);grey.create(frame.size(), CV_8UC1);prev_image.create(frame.size(), CV_8UC3);prev_grey.create(frame.size(), CV_8UC1);frame.copyTo(prev_image);cvtColor(prev_image, prev_grey, CV_BGR2GRAY);frame_num++;continue;}frame.copyTo(image);cvtColor(image, grey, CV_BGR2GRAY);// calcOpticalFlowFarneback(prev_grey,grey,flow,0.5, 3, 15, 3, 5, 1.2, 0 );calcOpticalFlowFarneback(prev_grey, grey, flow, 0.702, 5, 10, 2, 7, 1.5, cv::OPTFLOW_FARNEBACK_GAUSSIAN);prev_image.copyTo(cflow);drawOptFlowMap(flow, cflow, 12, 1.5, Scalar(0, 255, 0));imshow("cflow", cflow);Mat flows[2];split(flow, flows);Mat imgX(flows[0].size(), CV_8UC1);Mat imgY(flows[0].size(), CV_8UC1);convertFlowToImage(flows[0], flows[1], imgX, imgY, -bound, bound);//char tmp[20];//sprintf(tmp, "_%04d.jpg", int(frame_num));//imwrite(xFlowFile + tmp, imgX);//imwrite(yFlowFile + tmp, imgY);//imwrite(imgFile + tmp, image);std::swap(prev_grey, grey);std::swap(prev_image, image);frame_num = frame_num + 1;imshow("imgX", imgX);imshow("imgY", imgY);imshow("Demo", image);if (waitKey(1) == 27) break;}waitKey(0);return 0;
}

【OpenCV】OpenCV3的第二天——光流法(Optial Flow)运动目标检测相关推荐

  1. Matlab实现---基于平均背景法的视频运动目标检测(有背景更新)

    目录 实现目标及说明 代码及说明 完整文件获取 实现目标及说明 MATLAB--编程实现基于平均背景法的视频运动目标检测,并且要不断更新背景. 网上找到的很多关于运动目标检测的,多数是用OpenCV或 ...

  2. Python与OpenCV(三)——基于光流法的运动目标检测程序分析

    光流的概念是指在连续的两帧图像当中,由于图像中的物体移动或者摄像头的移动而使得图像中的目标形成的矢量运动轨迹叫做光流.本质上光流是个向量场,表示了一个像素点从第一帧过渡到第二帧的运动过程,体现该像素点 ...

  3. 光流法 Optical Flow

    最近调研目标跟踪,看到一个光流法,测试了一下它的效果,挺好玩的,这里对找到的资料简单整理总结一下. 对于光流法的介绍,可以参看如下博客http://blog.csdn.net/zouxy09/arti ...

  4. 光流法(optical flow)简介

    转载自:https://blog.csdn.net/qq_41368247/article/details/82562165 光流法理论背景 1.什么是光流 光流(optical flow)是空间运动 ...

  5. 计算机视觉--光流法(optical flow)简介

    光流法理论背景 1.什么是光流 光流(optical flow)是空间运动物体在观察成像平面上的像素运动的瞬时速度. 光流法是利用图像序列中像素在时间域上的变化以及相邻帧之间的相关性来找到上一帧跟当前 ...

  6. 目标追踪——光流法optical flow

    光流法简介 光流 光流法 光流的物理意义 光流场 光流法基本原理 金字塔方法 基于光流的运动目标检测(前景检测)算法 实现原理 光流 光流(optical flow)是空间运动物体在观察成像平面上的像 ...

  7. 光流法optical flow

    光流(optical flow),字面意思描述的是图像中像素强度的流动.光流法的目的是根据图像中像素点的灰度值强度变化估计出物体移动速度与方向. 光流法的假设 首先,光流估计指的是利用时间上相邻的两帧 ...

  8. 背景差法目标识别python_运动目标检测(4)—背景差分法

    背景减法利用图像序列中的当前帧和事先确定的背景参考模型间的差异比较,来确定运动物体位置,是一种基于统计学原理的运动目标检测的方法.这种方法的性能取决于背景建模技术,Gloyer等人使用单高斯模型的思路 ...

  9. opencv c++ 光流法、稀疏光流法、稠密光流法、均值迁移追踪(meanshift、camshift)

    1.概念 参考: (70条消息) 什么是光流法_张年糕慢慢走的博客-CSDN博客_光流法 (70条消息) 计算机视觉--光流法(optical flow)简介_T-Jhon的博客-CSDN博客_光流法 ...

最新文章

  1. 1.1 对象的概念及面向对象的三个基本特征
  2. Linux (redhat 6.5)服务器上安装Webmin
  3. 岗位内推 | 微软亚洲研究院智能多媒体组招聘实习生
  4. UVa712 S-Trees满二叉树
  5. 9种动态可视化技巧,快速提升可视化大屏能力(附模板)
  6. OPENWRT的串口初试
  7. 商品管理系统数据库设计--SQL Server
  8. spring启动简析
  9. 解读随着教育改革的深入steam教育
  10. webstorm绝对路径引入echarts_Webstorm+Webpack+echarts构建个性化定制的数据可视化图表两个echarts详细教程(柱状图,南丁格尔图)...
  11. R语言并行计算beta-NTI值
  12. wordpress模板_如何在15分钟内定制WordPress模板
  13. ESP32学习6:I2C总线
  14. 服装进销存管理软件哪个好用?看测评就知道了
  15. redis 健康检查
  16. 接入层交换机、分布层交换机、核心层交换机
  17. 高数【积分-不定积分】--猴博士爱讲课
  18. IOS Constraints自动布局适应不同尺寸
  19. 【Android 10 源码】深入理解 Omx 初始化
  20. bootstrap 表格 ajax,bootstrap-table实现ajax分页

热门文章

  1. mysql找不到my.ini的解决方法
  2. MySQL5.7修改了my.ini文件后服务启动不了
  3. 华北电大学计算机考研资料汇总
  4. Matlab如何绘制带箭头图形
  5. Windows 10 系统下载网址推荐
  6. USB转ESP8266 01 WIFI串口模块 电脑无线通信单片机转接板烧录固件 AirKiss SmartConfig 智能配网
  7. hashmap是无序的但是实际输出有序?
  8. Spring容器的启动流程
  9. php如何将图片gif,jpg或mysql longblob或blob字段值转换成16进制字符串
  10. 三款免费的AI绘画网站对比分析,真正好用的居然是它