/external/opencv3/modules/videostab/src/ |
D | stabilizer.cpp | 80 motions_.clear(); in reset() 127 at(curPos_ - 1, motions_) = estimateMotion(); in doOneIteration() 146 at(curStabilizedPos_ + radius_ - 1, motions_) = Mat::eye(3, 3, CV_32F); in doOneIteration() 165 inpainter_->setMotions(motions_); in setUp() 179 deblurer_->setMotions(motions_); in setUp() 276 motions_.resize(cacheSize); in setUp() 281 at(i, motions_) = Mat::eye(3, 3, CV_32F); in setUp() 299 return motionFilter_->stabilize(curStabilizedPos_, motions_, std::make_pair(0, curPos_)); in estimateStabilizationMotion() 389 motions_.push_back(motionEstimator_->estimate(prevFrame, frame, &ok)); in runPrePassIfNecessary() 397 motions2_.push_back(motions_.back()); in runPrePassIfNecessary() [all …]
|
D | wobble_suppression.cpp | 88 WobbleSuppressorBase::WobbleSuppressorBase() : motions_(0), stabilizationMotions_(0) in WobbleSuppressorBase() 102 CV_Assert(motions_ && stabilizationMotions_); in suppress() 115 …Mat_<float> ML = S1 * getMotion(k1, idx, *motions2_) * getMotion(k1, idx, *motions_).inv() * S1.in… in suppress() 116 …Mat_<float> MR = S1 * getMotion(idx, k2, *motions2_).inv() * getMotion(idx, k2, *motions_) * S1.in… in suppress() 154 CV_Assert(motions_ && stabilizationMotions_); in suppress() 167 Mat ML = S1 * getMotion(k1, idx, *motions2_) * getMotion(k1, idx, *motions_).inv() * S1.inv(); in suppress() 168 Mat MR = S1 * getMotion(idx, k2, *motions2_).inv() * getMotion(idx, k2, *motions_) * S1.inv(); in suppress()
|
D | deblurring.cpp | 96 Mat_<float> M = getMotion(idx, k, *motions_); in deblur()
|
D | inpainting.cpp | 133 vmotions[radius_ + i] = getMotion(idx, idx + i, *motions_) * invS; in inpaint() 344 Mat motion0to1 = getMotion(idx, idx + i, *motions_) * at(idx, *stabilizationMotions_).inv(); in inpaint()
|
/external/opencv3/modules/videostab/include/opencv2/videostab/ |
D | deblurring.hpp | 62 DeblurerBase() : radius_(0), frames_(0), motions_(0), blurrinessRates_(0) {} in DeblurerBase() 77 virtual void setMotions(const std::vector<Mat> &val) { motions_ = &val; } in setMotions() 78 virtual const std::vector<Mat>& motions() const { return *motions_; } in motions() 86 const std::vector<Mat> *motions_; member in cv::videostab::DeblurerBase
|
D | wobble_suppression.hpp | 78 virtual void setMotions(const std::vector<Mat> &val) { motions_ = &val; } in setMotions() 79 virtual const std::vector<Mat>& motions() const { return *motions_; } in motions() 90 const std::vector<Mat> *motions_; member in cv::videostab::WobbleSuppressorBase
|
D | inpainting.hpp | 65 : radius_(0), motionModel_(MM_UNKNOWN), frames_(0), motions_(0), in InpainterBase() 84 virtual void setMotions(const std::vector<Mat> &val) { motions_ = &val; } in setMotions() 85 virtual const std::vector<Mat>& motions() const { return *motions_; } in motions() 97 const std::vector<Mat> *motions_; member in cv::videostab::InpainterBase
|
D | stabilizer.hpp | 131 std::vector<Mat> motions_; // motions_[i] is the motion from i-th to i+1-th frame member in cv::videostab::StabilizerBase
|