Home
last modified time | relevance | path

Searched refs:setMotions (Results 1 – 5 of 5) sorted by relevance

/external/opencv3/modules/videostab/include/opencv2/videostab/
Dinpainting.hpp84 virtual void setMotions(const std::vector<Mat> &val) { motions_ = &val; } in setMotions() function in cv::videostab::InpainterBase
117 virtual void setMotions(const std::vector<Mat> &val);
Ddeblurring.hpp77 virtual void setMotions(const std::vector<Mat> &val) { motions_ = &val; } in setMotions() function in cv::videostab::DeblurerBase
Dwobble_suppression.hpp78 virtual void setMotions(const std::vector<Mat> &val) { motions_ = &val; } in setMotions() function in cv::videostab::WobbleSuppressorBase
/external/opencv3/modules/videostab/src/
Dstabilizer.cpp165 inpainter_->setMotions(motions_); in setUp()
179 deblurer_->setMotions(motions_); in setUp()
477 wobbleSuppressor_->setMotions(motions_); in setUp()
Dinpainting.cpp80 void InpaintingPipeline::setMotions(const std::vector<Mat> &val) in setMotions() function in cv::videostab::InpaintingPipeline
83 inpainters_[i]->setMotions(val); in setMotions()
84 InpainterBase::setMotions(val); in setMotions()