HomeSort by relevance Sort by last modified time
    Searched refs:motions2_ (Results 1 - 4 of 4) sorted by null

  /external/opencv3/modules/videostab/include/opencv2/videostab/
wobble_suppression.hpp 81 virtual void setMotions2(const std::vector<Mat> &val) { motions2_ = &val; }
82 virtual const std::vector<Mat>& motions2() const { return *motions2_; }
91 const std::vector<Mat> *motions2_; member in class:cv::videostab::WobbleSuppressorBase
stabilizer.hpp 191 std::vector<Mat> motions2_; member in class:cv::videostab::TwoPassStabilizer
  /external/opencv3/modules/videostab/src/
wobble_suppression.cpp 115 Mat_<float> ML = S1 * getMotion(k1, idx, *motions2_) * getMotion(k1, idx, *motions_).inv() * S1.inv();
116 Mat_<float> MR = S1 * getMotion(idx, k2, *motions2_).inv() * getMotion(idx, k2, *motions_) * S1.inv();
167 Mat ML = S1 * getMotion(k1, idx, *motions2_) * getMotion(k1, idx, *motions_).inv() * S1.inv();
168 Mat MR = S1 * getMotion(idx, k2, *motions2_).inv() * getMotion(idx, k2, *motions_) * S1.inv();
stabilizer.cpp 324 motions2_.clear();
395 motions2_.push_back(M);
397 motions2_.push_back(motions_.back());
478 wobbleSuppressor_->setMotions2(motions2_);

Completed in 1704 milliseconds