opencv/samples/cpp/fback.cpp

61 lines
1.6 KiB
C++
Raw Normal View History

#include "opencv2/video/tracking.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/videoio/videoio.hpp"
#include "opencv2/highgui/highgui.hpp"
2010-12-04 16:29:51 +08:00
#include <iostream>
using namespace cv;
2010-12-04 16:29:51 +08:00
using namespace std;
2012-06-08 01:21:29 +08:00
static void help()
2010-12-04 16:29:51 +08:00
{
2012-06-08 01:21:29 +08:00
cout <<
"\nThis program demonstrates dense optical flow algorithm by Gunnar Farneback\n"
"Mainly the function: calcOpticalFlowFarneback()\n"
"Call:\n"
"./fback\n"
"This reads from video camera 0\n" << endl;
2010-12-04 16:29:51 +08:00
}
2012-06-08 01:21:29 +08:00
static void drawOptFlowMap(const Mat& flow, Mat& cflowmap, int step,
2010-07-17 18:35:17 +08:00
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);
}
}
2010-07-17 18:35:17 +08:00
int main(int, char**)
{
VideoCapture cap(0);
2010-12-04 16:29:51 +08:00
help();
if( !cap.isOpened() )
return -1;
2012-06-08 01:21:29 +08:00
Mat prevgray, gray, flow, cflow, frame;
namedWindow("flow", 1);
2012-06-08 01:21:29 +08:00
for(;;)
{
cap >> frame;
cvtColor(frame, gray, COLOR_BGR2GRAY);
2012-06-08 01:21:29 +08:00
if( prevgray.data )
{
calcOpticalFlowFarneback(prevgray, gray, flow, 0.5, 3, 15, 3, 5, 1.2, 0);
cvtColor(prevgray, cflow, COLOR_GRAY2BGR);
drawOptFlowMap(flow, cflow, 16, 1.5, Scalar(0, 255, 0));
imshow("flow", cflow);
}
if(waitKey(30)>=0)
break;
std::swap(prevgray, gray);
}
return 0;
}