Lines Matching full:frame1
200 const Mat &M, const Mat &frame0, const Mat &mask0, const Mat &frame1)
202 CV_Assert(frame0.type() == CV_8UC3 && frame1.type() == CV_8UC3);
204 CV_Assert(frame0.size() == frame1.size());
219 if (y1 >= 0 && y1 < frame1.rows && x1 >= 0 && x1 < frame1.cols)
220 err += std::abs(intensity(frame1.at<Point3_<uchar> >(y1,x1)) -
294 Point3_<uchar> cp = frame1(py1,px1), cq = frame1(qy1,qx1);
316 Mat_<Point3_<uchar> > frame1;
411 body.frame1 = transformedFrame1_;
508 const Mat &flowMask, const Mat &flowX, const Mat &flowY, const Mat &frame1, const Mat &mask1,
514 CV_Assert(frame1.type() == CV_8UC3 && frame1.size() == flowMask.size());
531 if (x1 >= 0 && x1 < frame1.cols && y1 >= 0 && y1 < frame1.rows && mask1_(y1,x1)
534 frame0.at<Point3_<uchar> >(y0,x0) = frame1.at<Point3_<uchar> >(y1,x1);