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

  /external/opencv3/modules/videostab/include/opencv2/videostab/
motion_stabilizing.hpp 66 int size, const std::vector<Mat> &motions, std::pair<int,int> range,
77 int size, const std::vector<Mat> &motions, std::pair<int,int> range,
90 int idx, const std::vector<Mat> &motions, std::pair<int,int> range) = 0;
93 int size, const std::vector<Mat> &motions, std::pair<int,int> range,
107 int idx, const std::vector<Mat> &motions, std::pair<int,int> range);
144 int size, const std::vector<Mat> &motions, std::pair<int,int> range,
deblurring.hpp 78 virtual const std::vector<Mat>& motions() const { return *motions_; } function in class:cv::videostab::DeblurerBase
wobble_suppression.hpp 79 virtual const std::vector<Mat>& motions() const { return *motions_; } function in class:cv::videostab::WobbleSuppressorBase
inpainting.hpp 85 virtual const std::vector<Mat>& motions() const { return *motions_; } function in class:cv::videostab::InpainterBase
global_motion.hpp 285 /** @brief Computes motion between two frames assuming that all the intermediate motions are known.
289 @param motions Pair-wise motions. motions[i] denotes motion from the frame i to the frame i+1
292 CV_EXPORTS Mat getMotion(int from, int to, const std::vector<Mat> &motions);
  /external/opencv3/modules/calib3d/src/
homography_decomp.cpp 452 vector<CameraMotion> motions; local
453 hdecomp->decomposeHomography(H, K, motions);
455 int nsols = static_cast<int>(motions.size());
461 _rotations.getMatRef(k) = Mat(motions[k].R);
468 _translations.getMatRef(k) = Mat(motions[k].t);
475 _normals.getMatRef(k) = Mat(motions[k].n);
  /external/opencv3/modules/videostab/src/
stabilizer.cpp 338 int frameCount, const std::vector<Mat> &motions, const std::vector<Mat> &stabilizationMotions)
343 Mat_<float> M = at(i, motions);
351 Mat_<float> M = getMotion(0, i, motions);
359 Mat_<float> M = stabilizationMotions[i] * getMotion(0, i, motions);
377 // estimate motions
380 log_->print("first pass: estimating motions");
422 // add aux. motions
motion_stabilizing.cpp 55 int size, const std::vector<Mat> &motions, std::pair<int,int> range, Mat *stabilizationMotions)
57 std::vector<Mat> updatedMotions(motions.size());
58 for (size_t i = 0; i < motions.size(); ++i)
59 updatedMotions[i] = motions[i].clone();
84 int size, const std::vector<Mat> &motions, std::pair<int,int> range, Mat *stabilizationMotions)
87 stabilizationMotions[i] = stabilize(i, motions, range);
105 Mat GaussianMotionFilter::stabilize(int idx, const std::vector<Mat> &motions, std::pair<int,int> range)
107 const Mat &cur = at(idx, motions);
114 res += weight_[radius_ + i - idx] * getMotion(idx, i, motions);
143 int size, const std::vector<Mat> &motions, std::pair<int,int> /*range*/, Mat *stabilizationMotions
    [all...]
global_motion.cpp 530 // TODO will estimation of all motions as one LP problem be faster?
845 Mat getMotion(int from, int to, const std::vector<Mat> &motions)
851 M = at(i, motions) * M;
856 M = at(i, motions) * M;
  /build/tools/droiddoc/templates-pdk/assets/
carousel.js 188 var motions = Math.abs(animation.goal - animation.origin);
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_video.c 245 int x, int y, const short motions[2],
249 int mv_horizontal = motions[0];
250 int mv_vertical = motions[1];

Completed in 100 milliseconds