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

  /external/opencv3/modules/videostab/include/opencv2/videostab/
global_motion.hpp 85 @param model Motion model. See cv::videostab::MotionModel.
104 @param val Motion model. See cv::videostab::MotionModel.
106 virtual void setMotionModel(MotionModel val) { motionModel_ = val; }
109 @return Motion model. See cv::videostab::MotionModel.
111 virtual MotionModel motionModel() const { return motionModel_; }
123 MotionEstimatorBase(MotionModel model) { setMotionModel(model); }
126 MotionModel motionModel_;
134 MotionEstimatorRansacL2(MotionModel model = MM_AFFINE);
156 MotionEstimatorL1(MotionModel model = MM_AFFINE)
    [all...]
motion_stabilizing.hpp 120 LpMotionStabilizer(MotionModel model = MM_SIMILARITY);
122 void setMotionModel(MotionModel val) { model_ = val; }
123 MotionModel motionModel() const { return model_; }
148 MotionModel model_;
inpainting.hpp 73 virtual void setMotionModel(MotionModel val) { motionModel_ = val; }
74 virtual MotionModel motionModel() const { return motionModel_; }
95 MotionModel motionModel_;
115 virtual void setMotionModel(MotionModel val);
  /external/opencv3/samples/cpp/
videostab.cpp 34 MotionModel motionModel(const string &str);
197 Ptr<MotionEstimatorRansacL2> est = makePtr<MotionEstimatorRansacL2>(motionModel(arg(prefix + "model")));
248 Ptr<MotionEstimatorL1> est = makePtr<MotionEstimatorL1>(motionModel(arg(prefix + "model")));
432 MotionModel model = ws->motionEstimator()->motionModel();
463 MotionModel model = stabilizer->motionEstimator()->motionModel();
547 MotionModel motionModel(const string &str
    [all...]
  /external/opencv3/modules/videostab/src/
global_motion.cpp 481 MotionEstimatorRansacL2::MotionEstimatorRansacL2(MotionModel model)
500 if (motionModel() != MM_HOMOGRAPHY)
502 points0, points1, motionModel(), ransacParams_, 0, &ninliers);
524 MotionEstimatorL1::MotionEstimatorL1(MotionModel model)
545 CV_Assert(motionModel() <= MM_AFFINE && motionModel() != MM_RIGID);
558 if (motionModel() == MM_SIMILARITY)
560 else if (motionModel() == MM_TRANSLATION_AND_SCALE)
562 else if (motionModel() == MM_TRANSLATION)
608 if (motionModel() == MM_SIMILARITY
    [all...]
stabilizer.cpp 163 inpainter_->setMotionModel(motionEstimator_->motionModel());
206 if (motionEstimator_->motionModel() != MM_HOMOGRAPHY)
217 if (motionEstimator_->motionModel() != MM_HOMOGRAPHY)

Completed in 2686 milliseconds