Home
last modified time | relevance | path

Searched refs:MotionModel (Results 1 – 8 of 8) sorted by relevance

/external/opencv3/modules/videostab/include/opencv2/videostab/
Dglobal_motion.hpp106 virtual void setMotionModel(MotionModel val) { motionModel_ = val; } in setMotionModel()
111 virtual MotionModel motionModel() const { return motionModel_; } in motionModel()
123 MotionEstimatorBase(MotionModel model) { setMotionModel(model); } in MotionEstimatorBase()
126 MotionModel motionModel_;
134 MotionEstimatorRansacL2(MotionModel model = MM_AFFINE);
156 MotionEstimatorL1(MotionModel model = MM_AFFINE);
180 virtual void setMotionModel(MotionModel val) { motionModel_ = val; } in setMotionModel()
181 virtual MotionModel motionModel() const { return motionModel_; } in motionModel()
186 ImageMotionEstimatorBase(MotionModel model) { setMotionModel(model); } in ImageMotionEstimatorBase()
189 MotionModel motionModel_;
[all …]
Dmotion_stabilizing.hpp120 LpMotionStabilizer(MotionModel model = MM_SIMILARITY);
122 void setMotionModel(MotionModel val) { model_ = val; } in setMotionModel()
123 MotionModel motionModel() const { return model_; } in motionModel()
148 MotionModel model_;
Dinpainting.hpp73 virtual void setMotionModel(MotionModel val) { motionModel_ = val; } in setMotionModel()
74 virtual MotionModel motionModel() const { return motionModel_; } in motionModel()
95 MotionModel motionModel_;
115 virtual void setMotionModel(MotionModel val);
Dmotion_core.hpp59 enum MotionModel enum
102 static RansacParams default2dMotion(MotionModel model) in default2dMotion()
/external/opencv3/samples/cpp/
Dvideostab.cpp34 MotionModel motionModel(const string &str);
432 MotionModel model = ws->motionEstimator()->motionModel(); in main()
463 MotionModel model = stabilizer->motionEstimator()->motionModel(); in main()
547 MotionModel motionModel(const string &str) in motionModel()
/external/opencv3/modules/videostab/src/
Dglobal_motion.cpp481 MotionEstimatorRansacL2::MotionEstimatorRansacL2(MotionModel model) in MotionEstimatorRansacL2()
524 MotionEstimatorL1::MotionEstimatorL1(MotionModel model) in MotionEstimatorL1()
Dinpainting.cpp72 void InpaintingPipeline::setMotionModel(MotionModel val) in setMotionModel()
Dmotion_stabilizing.cpp121 LpMotionStabilizer::LpMotionStabilizer(MotionModel model) in LpMotionStabilizer()