Lines Matching refs:points_
721 optFlowEstimator_->run(frame0, frame1, pointsPrev_, points_, status_, noArray()); in estimate()
725 pointsPrevGood_.clear(); pointsPrevGood_.reserve(points_.size()); in estimate()
726 pointsGood_.clear(); pointsGood_.reserve(points_.size()); in estimate()
728 for (size_t i = 0; i < points_.size(); ++i) in estimate()
733 pointsGood_.push_back(points_[i]); in estimate()
743 points_.swap(pointsGood_); in estimate()
745 outlierRejector_->process(frame0.size(), pointsPrev_, points_, status_); in estimate()
748 pointsPrevGood_.reserve(points_.size()); in estimate()
751 pointsGood_.reserve(points_.size()); in estimate()
753 for (size_t i = 0; i < points_.size(); ++i) in estimate()
758 pointsGood_.push_back(points_[i]); in estimate()
804 optFlowEstimator_.run(frame0, frame1, pointsPrev_, points_, status_); in estimate()
807 cuda::compactPoints(pointsPrev_, points_, status_); in estimate()
810 points_.download(hostPoints_); in estimate()