OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:motionEstimator_
(Results
1 - 5
of
5
) sorted by null
/external/opencv3/modules/videostab/include/opencv2/videostab/
wobble_suppression.hpp
67
void setMotionEstimator(Ptr<ImageMotionEstimatorBase> val) {
motionEstimator_
= val; }
68
Ptr<ImageMotionEstimatorBase> motionEstimator() const { return
motionEstimator_
; }
88
Ptr<ImageMotionEstimatorBase>
motionEstimator_
;
global_motion.hpp
208
virtual void setMotionModel(MotionModel val) {
motionEstimator_
->setMotionModel(val); }
209
virtual MotionModel motionModel() const { return
motionEstimator_
->motionModel(); }
215
Ptr<ImageMotionEstimatorBase>
motionEstimator_
;
226
virtual void setMotionModel(MotionModel val) {
motionEstimator_
->setMotionModel(val); }
227
virtual MotionModel motionModel() const { return
motionEstimator_
->motionModel(); }
241
Ptr<MotionEstimatorBase>
motionEstimator_
;
259
virtual void setMotionModel(MotionModel val) {
motionEstimator_
->setMotionModel(val); }
260
virtual MotionModel motionModel() const { return
motionEstimator_
->motionModel(); }
269
Ptr<MotionEstimatorBase>
motionEstimator_
;
stabilizer.hpp
80
void setMotionEstimator(Ptr<ImageMotionEstimatorBase> val) {
motionEstimator_
= val; }
81
Ptr<ImageMotionEstimatorBase> motionEstimator() const { return
motionEstimator_
; }
113
Ptr<ImageMotionEstimatorBase>
motionEstimator_
;
/external/opencv3/modules/videostab/src/
stabilizer.cpp
163
inpainter_->setMotionModel(
motionEstimator_
->motionModel());
206
if (
motionEstimator_
->motionModel() != MM_HOMOGRAPHY)
217
if (
motionEstimator_
->motionModel() != MM_HOMOGRAPHY)
293
return
motionEstimator_
->estimate(at(curPos_ - 1, frames_), at(curPos_, frames_));
389
motions_.push_back(
motionEstimator_
->estimate(prevFrame, frame, &ok));
global_motion.cpp
680
: ImageMotionEstimatorBase(estimator->motionModel()),
motionEstimator_
(estimator)
690
Mat_<float> M =
motionEstimator_
->estimate(frame0, frame1, &ok_);
700
: ImageMotionEstimatorBase(estimator->motionModel()),
motionEstimator_
(estimator)
764
return
motionEstimator_
->estimate(pointsPrevGood_, pointsGood_, ok);
770
: ImageMotionEstimatorBase(estimator->motionModel()),
motionEstimator_
(estimator)
839
return
motionEstimator_
->estimate(hostPointsPrev_, hostPoints_, ok);
Completed in 107 milliseconds