motionEstimator_  208 modules/videostab/include/opencv2/videostab/global_motion.hpp     virtual void setMotionModel(MotionModel val) { motionEstimator_->setMotionModel(val); }
motionEstimator_  209 modules/videostab/include/opencv2/videostab/global_motion.hpp     virtual MotionModel motionModel() const { return motionEstimator_->motionModel(); }
motionEstimator_  215 modules/videostab/include/opencv2/videostab/global_motion.hpp     Ptr<ImageMotionEstimatorBase> motionEstimator_;
motionEstimator_  226 modules/videostab/include/opencv2/videostab/global_motion.hpp     virtual void setMotionModel(MotionModel val) { motionEstimator_->setMotionModel(val); }
motionEstimator_  227 modules/videostab/include/opencv2/videostab/global_motion.hpp     virtual MotionModel motionModel() const { return motionEstimator_->motionModel(); }
motionEstimator_  241 modules/videostab/include/opencv2/videostab/global_motion.hpp     Ptr<MotionEstimatorBase> motionEstimator_;
motionEstimator_  259 modules/videostab/include/opencv2/videostab/global_motion.hpp     virtual void setMotionModel(MotionModel val) { motionEstimator_->setMotionModel(val); }
motionEstimator_  260 modules/videostab/include/opencv2/videostab/global_motion.hpp     virtual MotionModel motionModel() const { return motionEstimator_->motionModel(); }
motionEstimator_  269 modules/videostab/include/opencv2/videostab/global_motion.hpp     Ptr<MotionEstimatorBase> motionEstimator_;
motionEstimator_   80 modules/videostab/include/opencv2/videostab/stabilizer.hpp     void setMotionEstimator(Ptr<ImageMotionEstimatorBase> val) { motionEstimator_ = val; }
motionEstimator_   81 modules/videostab/include/opencv2/videostab/stabilizer.hpp     Ptr<ImageMotionEstimatorBase> motionEstimator() const { return motionEstimator_; }
motionEstimator_  113 modules/videostab/include/opencv2/videostab/stabilizer.hpp     Ptr<ImageMotionEstimatorBase> motionEstimator_;
motionEstimator_   67 modules/videostab/include/opencv2/videostab/wobble_suppression.hpp     void setMotionEstimator(Ptr<ImageMotionEstimatorBase> val) { motionEstimator_ = val; }
motionEstimator_   68 modules/videostab/include/opencv2/videostab/wobble_suppression.hpp     Ptr<ImageMotionEstimatorBase> motionEstimator() const { return motionEstimator_; }
motionEstimator_   88 modules/videostab/include/opencv2/videostab/wobble_suppression.hpp     Ptr<ImageMotionEstimatorBase> motionEstimator_;
motionEstimator_  690 modules/videostab/src/global_motion.cpp     Mat_<float> M = motionEstimator_->estimate(frame0, frame1, &ok_);
motionEstimator_  764 modules/videostab/src/global_motion.cpp     return motionEstimator_->estimate(pointsPrevGood_, pointsGood_, ok);
motionEstimator_  839 modules/videostab/src/global_motion.cpp     return motionEstimator_->estimate(hostPointsPrev_, hostPoints_, ok);
motionEstimator_  163 modules/videostab/src/stabilizer.cpp         inpainter_->setMotionModel(motionEstimator_->motionModel());
motionEstimator_  206 modules/videostab/src/stabilizer.cpp     if (motionEstimator_->motionModel() != MM_HOMOGRAPHY)
motionEstimator_  217 modules/videostab/src/stabilizer.cpp         if (motionEstimator_->motionModel() != MM_HOMOGRAPHY)
motionEstimator_  293 modules/videostab/src/stabilizer.cpp     return motionEstimator_->estimate(at(curPos_ - 1, frames_), at(curPos_, frames_));
motionEstimator_  389 modules/videostab/src/stabilizer.cpp                 motions_.push_back(motionEstimator_->estimate(prevFrame, frame, &ok));