Home
last modified time | relevance | path

Searched refs:total_num_matches_ (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/stitching/src/
Dmotion_estimators.cpp204 total_num_matches_ = 0; in estimate()
206 total_num_matches_ += static_cast<int>(pairwise_matches[edges_[i].first * num_images_ + in estimate()
210 total_num_matches_ * num_errs_per_measurement_, in estimate()
249 …LOGLN_CHAT("Bundle adjustment, final RMS error: " << std::sqrt(err.dot(err) / total_num_matches_)); in estimate()
332 err.create(total_num_matches_ * 2, 1, CV_64F); in calcError()
399 jac.create(total_num_matches_ * 2, num_images_ * 7, CV_64F); in calcJacobian()
507 err.create(total_num_matches_ * 3, 1, CV_64F); in calcError()
581 jac.create(total_num_matches_ * 3, num_images_ * 4, CV_64F); in calcJacobian()
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
Dmotion_estimators.hpp176 int total_num_matches_; member in cv::detail::BundleAdjusterBase