Home | History | Annotate | Download | only in test

Lines Matching full:frame1

71     cv::Mat frame1 = readImageType("opticalflow/frame1.png", CV_32FC1);
72 ASSERT_FALSE(frame1.empty());
79 brox->calc(loadMat(frame0), loadMat(frame1), flow);
135 cv::Mat frame1 = readImageType("opticalflow/frame1.png", CV_32FC1);
136 ASSERT_FALSE(frame1.empty());
140 cv::resize(frame1, r_frame1, cv::Size(1380,1000));
147 brox->calc(loadMat(frame0), loadMat(frame1), flow);
192 cv::Mat frame1 = readImage("opticalflow/frame1.png", useGray ? cv::IMREAD_GRAYSCALE : cv::IMREAD_COLOR);
193 ASSERT_FALSE(frame1.empty());
213 pyrLK->calc(loadMat(frame0), loadMat(frame1), d_pts, d_nextPts, d_status);
225 cv::calcOpticalFlowPyrLK(frame0, frame1, pts, nextPts_gold, status_gold, cv::noArray());
296 cv::Mat frame1 = readImage("opticalflow/rubberwhale2.png", cv::IMREAD_GRAYSCALE);
297 ASSERT_FALSE(frame1.empty());
309 farn->calc(loadMat(frame0), loadMat(frame1), d_flow);
317 farn->calc(loadMat(frame0), loadMat(frame1), d_flow);
321 frame0, frame1, flow, farn->getPyrScale(), farn->getNumLevels(), farn->getWinSize(),
361 cv::Mat frame1 = readImage("opticalflow/rubberwhale2.png", cv::IMREAD_GRAYSCALE);
362 ASSERT_FALSE(frame1.empty());
370 d_alg->calc(loadMat(frame0), loadMat(frame1), d_flow);
379 alg->calc(frame0, frame1, flow);