-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathopticalflow.h
38 lines (27 loc) · 996 Bytes
/
opticalflow.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: opticalflow.h
* Author: KSH
*
* Created on December 29, 2016, 2:18 AM
*/
#ifndef OPTICALFLOW_H
#define OPTICALFLOW_H
using namespace cv;
using namespace std;
#ifdef __cplusplus
extern "C" {
#endif
void drawOptFlowMap (const Mat& flow, Mat& cflowmap, int step, const Scalar& color);
void drawoptflowsparse(Mat& prv,Mat& next,Mat& imsparse,vector<Point2f> *points,vector<uchar> &status,vector<float> err);
void findobst(Mat& flow, Mat& cflowmap,Mat& imsparse,vector<Point2f> *points,vector<uchar> &status,vector<float> err);
void findstatobst(Mat& diff,Mat& next);
void findstaticobst(Mat& flow, Mat& cflowmap,Mat& imsparse,vector<Point2f> *points,vector<uchar> &status,vector<float> err);
#ifdef __cplusplus
}
#endif
#endif /* OPTICALFLOW_H */