Lines Matching defs:prevPts
328 // void calcOpticalFlowPyrLK(Mat prevImg, Mat nextImg, vector_Point2f prevPts, vector_Point2f& nextPts, vector_uchar& status, vector_float& 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)
339 std::vector<Point2f> prevPts;
341 Mat_to_vector_Point2f( prevPts_mat, prevPts );
353 cv::calcOpticalFlowPyrLK( prevImg, nextImg, prevPts, nextPts, status, err, winSize, (int)maxLevel, criteria, (int)flags, (double)minEigThreshold );
374 std::vector<Point2f> prevPts;
376 Mat_to_vector_Point2f( prevPts_mat, prevPts );
387 cv::calcOpticalFlowPyrLK( prevImg, nextImg, prevPts, nextPts, status, err, winSize, (int)maxLevel );
408 std::vector<Point2f> prevPts;
410 Mat_to_vector_Point2f( prevPts_mat, prevPts );
420 cv::calcOpticalFlowPyrLK( prevImg, nextImg, prevPts, nextPts, status, err );