HomeSort by relevance Sort by last modified time
    Searched defs:prevPts (Results 1 - 5 of 5) sorted by null

  /external/opencv3/modules/video/src/
lkpyramid.hpp 23 const Point2f* prevPts;
lkpyramid.cpp 204 prevPts = _prevPts;
240 Point2f prevPt = prevPts[ptidx]*(float)(1./(1 << level));
    [all...]
  /external/opencv3/modules/video/misc/java/test/
VideoTest.java 18 private MatOfPoint2f prevPts = null;
40 prevPts = new MatOfPoint2f(new Point(11d, 8d), new Point(5d, 5d), new Point(10d, 10d));
64 Video.calcOpticalFlowPyrLK(subLena1, subLena2, prevPts, nextPts, status, err);
70 Video.calcOpticalFlowPyrLK(subLena1, subLena2, prevPts, nextPts, status, err, sz, 3);
  /external/opencv3/modules/java/src/
video.cpp 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 )
    [all...]
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 

Completed in 222 milliseconds