Home | History | Annotate | Download | only in src

Lines Matching refs:estimate

489 Mat MotionEstimatorRansacL2::estimate(InputArray points0, InputArray points1, bool *ok)
531 Mat MotionEstimatorL1::estimate(InputArray points0, InputArray points1, bool *ok)
667 Mat FromFileMotionReader::estimate(const Mat &/*frame0*/, const Mat &/*frame1*/, bool *ok)
687 Mat ToFileMotionWriter::estimate(const Mat &frame0, const Mat &frame1, bool *ok)
690 Mat_<float> M = motionEstimator_->estimate(frame0, frame1, &ok_);
708 Mat KeypointBasedMotionEstimator::estimate(const Mat &frame0, const Mat &frame1, bool *ok)
763 // estimate motion
764 return motionEstimator_->estimate(pointsPrevGood_, pointsGood_, ok);
779 Mat KeypointBasedMotionEstimatorGpu::estimate(const Mat &frame0, const Mat &frame1, bool *ok)
783 return estimate(frame0_, frame1_, ok);
787 Mat KeypointBasedMotionEstimatorGpu::estimate(const cuda::GpuMat &frame0, const cuda::GpuMat &frame1, bool *ok)
838 // estimate motion
839 return motionEstimator_->estimate(hostPointsPrev_, hostPoints_, ok);