Lines Matching full:frame0
68 cv::Mat frame0 = readImageType("opticalflow/frame0.png", CV_32FC1);
69 ASSERT_FALSE(frame0.empty());
79 brox->calc(loadMat(frame0), loadMat(frame1), flow);
132 cv::Mat frame0 = readImageType("opticalflow/frame0.png", CV_32FC1);
133 ASSERT_FALSE(frame0.empty());
139 cv::resize(frame0, r_frame0, cv::Size(1380,1000));
147 brox->calc(loadMat(frame0), loadMat(frame1), flow);
189 cv::Mat frame0 = readImage("opticalflow/frame0.png", useGray ? cv::IMREAD_GRAYSCALE : cv::IMREAD_COLOR);
190 ASSERT_FALSE(frame0.empty());
197 gray_frame = frame0;
199 cv::cvtColor(frame0, gray_frame, cv::COLOR_BGR2GRAY);
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());
293 cv::Mat frame0 = readImage("opticalflow/rubberwhale1.png", cv::IMREAD_GRAYSCALE);
294 ASSERT_FALSE(frame0.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(),
358 cv::Mat frame0 = readImage("opticalflow/rubberwhale1.png", cv::IMREAD_GRAYSCALE);
359 ASSERT_FALSE(frame0.empty());
370 d_alg->calc(loadMat(frame0), loadMat(frame1), d_flow);
379 alg->calc(frame0, frame1, flow);