HomeSort by relevance Sort by last modified time
    Searched refs:calcOpticalFlowPyrLK (Results 1 - 19 of 19) sorted by null

  /external/opencv3/modules/video/misc/java/test/
VideoTest.java 64 Video.calcOpticalFlowPyrLK(subLena1, subLena2, prevPts, nextPts, status, err);
70 Video.calcOpticalFlowPyrLK(subLena1, subLena2, prevPts, nextPts, status, err, sz, 3);
  /external/opencv3/modules/video/test/ocl/
test_optflowpyrlk.cpp 95 OCL_OFF(cv::calcOpticalFlowPyrLK(frame0, frame1, pts, cpuNextPts, cpuStatusCPU, cpuErr, winSize, maxLevel, criteria, flags, minEigThreshold));
98 OCL_ON(cv::calcOpticalFlowPyrLK(umatFrame0, umatFrame1, pts, umatNextPts, umatStatus, umatErr, winSize, maxLevel, criteria, flags, minEigThreshold));
  /external/opencv3/modules/video/perf/opencl/
perf_optflow_pyrlk.cpp 93 cv::calcOpticalFlowPyrLK(uFrame0, uFrame1, pts, uNextPts, uStatus, uErr, winSize, maxLevel, criteria, flags, minEigThreshold);
  /external/opencv3/samples/python2/
lk_homography.py 38 p1, st, err = cv2.calcOpticalFlowPyrLK(img0, img1, p0, None, **lk_params)
39 p0r, st, err = cv2.calcOpticalFlowPyrLK(img1, img0, p1, None, **lk_params)
lk_track.py 53 p1, st, err = cv2.calcOpticalFlowPyrLK(img0, img1, p0, None, **lk_params)
54 p0r, st, err = cv2.calcOpticalFlowPyrLK(img1, img0, p1, None, **lk_params)
  /external/opencv3/modules/java/src/
video+Video.java 90 // C++: 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)
93 //javadoc: calcOpticalFlowPyrLK(prevImg, nextImg, prevPts, nextPts, status, err, winSize, maxLevel, criteria, flags, minEigThreshold)
94 public static void calcOpticalFlowPyrLK(Mat prevImg, Mat nextImg, MatOfPoint2f prevPts, MatOfPoint2f nextPts, MatOfByte status, MatOfFloat err, Size winSize, int maxLevel, TermCriteria criteria, int flags, double minEigThreshold)
105 //javadoc: calcOpticalFlowPyrLK(prevImg, nextImg, prevPts, nextPts, status, err, winSize, maxLevel)
106 public static void calcOpticalFlowPyrLK(Mat prevImg, Mat nextImg, MatOfPoint2f prevPts, MatOfPoint2f nextPts, MatOfByte status, MatOfFloat err, Size winSize, int maxLevel)
117 //javadoc: calcOpticalFlowPyrLK(prevImg, nextImg, prevPts, nextPts, status, err)
118 public static void calcOpticalFlowPyrLK(Mat prevImg, Mat nextImg, MatOfPoint2f prevPts, MatOfPoint2f nextPts, MatOfByte status, MatOfFloat err)
262 // C++: 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)
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)
353 cv::calcOpticalFlowPyrLK( prevImg, nextImg, prevPts, nextPts, status, err, winSize, (int)maxLevel, criteria, (int)flags, (double)minEigThreshold );
387 cv::calcOpticalFlowPyrLK( prevImg, nextImg, prevPts, nextPts, status, err, winSize, (int)maxLevel );
420 cv::calcOpticalFlowPyrLK( prevImg, nextImg, prevPts, nextPts, status, err );
    [all...]
  /external/opencv3/modules/videostab/src/
optical_flow.cpp 61 calcOpticalFlowPyrLK(frame0, frame1, points0, points1, status, errors, winSize_, maxLevel_);
  /external/opencv3/samples/cpp/
lkdemo.cpp 92 calcOpticalFlowPyrLK(prevGray, gray, points[0], points[1], status, err, winSize,
  /external/opencv3/samples/tapi/
pyrlk_optical_flow.cpp 176 calcOpticalFlowPyrLK(ptr0, ptr1, pts, nextPts, status, err);
211 calcOpticalFlowPyrLK(frame0, frame1, pts, nextPts, status, err);
  /external/opencv3/modules/video/include/opencv2/video/
tracking.hpp 105 /** @brief Constructs the image pyramid which can be passed to calcOpticalFlowPyrLK.
110 calcOpticalFlowPyrLK. It is needed to calculate required padding for pyramid levels.
113 constructed without the gradients then calcOpticalFlowPyrLK will calculate them internally.
173 CV_EXPORTS_W void calcOpticalFlowPyrLK( InputArray prevImg, InputArray nextImg,
  /external/opencv3/modules/video/perf/
perf_optflowpyrlk.cpp 90 calcOpticalFlowPyrLK(frame1, frame2, inPoints, outPoints, status, err,
171 calcOpticalFlowPyrLK(pyramid1, pyramid2, inPoints, outPoints, status, err,
  /external/opencv3/modules/video/test/
test_optflowpyrlk.cpp 244 ASSERT_NO_THROW(cv::calcOpticalFlowPyrLK(img1, img2, prev, next, status, error));
  /external/opencv3/modules/cudaoptflow/perf/
perf_optflow.cpp 160 cv::calcOpticalFlowPyrLK(frame0, frame1, pts, nextPts, status, cv::noArray(),
  /external/opencv3/modules/video/src/
compat_video.cpp 284 cv::calcOpticalFlowPyrLK( A, B, ptA, ptB, st,
lkpyramid.cpp     [all...]
  /cts/apps/CameraITS/tests/sensor_fusion/
test_sensor_fusion.py 304 p1,st,_ = cv2.calcOpticalFlowPyrLK(gframe0, gframe1, p0_filtered, None,
  /external/opencv3/modules/cudaoptflow/test/
test_optflow.cpp 225 cv::calcOpticalFlowPyrLK(frame0, frame1, pts, nextPts_gold, status_gold, cv::noArray());
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 

Completed in 765 milliseconds