mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.2 KiB
48 lines
1.2 KiB
#pragma once |
|
|
|
namespace cv |
|
{ |
|
namespace detail |
|
{ |
|
|
|
typedef short deriv_type; |
|
|
|
struct ScharrDerivInvoker : ParallelLoopBody |
|
{ |
|
ScharrDerivInvoker(const Mat& _src, const Mat& _dst) |
|
: src(_src), dst(_dst) |
|
{ } |
|
|
|
void operator()(const Range& range) const CV_OVERRIDE; |
|
|
|
const Mat& src; |
|
const Mat& dst; |
|
}; |
|
|
|
struct LKTrackerInvoker : ParallelLoopBody |
|
{ |
|
LKTrackerInvoker( const Mat& _prevImg, const Mat& _prevDeriv, const Mat& _nextImg, |
|
const Point2f* _prevPts, Point2f* _nextPts, |
|
uchar* _status, float* _err, |
|
Size _winSize, TermCriteria _criteria, |
|
int _level, int _maxLevel, int _flags, float _minEigThreshold ); |
|
|
|
void operator()(const Range& range) const CV_OVERRIDE; |
|
|
|
const Mat* prevImg; |
|
const Mat* nextImg; |
|
const Mat* prevDeriv; |
|
const Point2f* prevPts; |
|
Point2f* nextPts; |
|
uchar* status; |
|
float* err; |
|
Size winSize; |
|
TermCriteria criteria; |
|
int level; |
|
int maxLevel; |
|
int flags; |
|
float minEigThreshold; |
|
}; |
|
|
|
}// namespace detail |
|
}// namespace cv
|
|
|