OpenCV
4.10.0-dev
Open Source Computer Vision
|
Describes a global 2D motion estimation method which minimizes L1 error. More...
#include <opencv2/videostab/global_motion.hpp>
Public Member Functions | |
MotionEstimatorL1 (MotionModel model=MM_AFFINE) | |
virtual Mat | estimate (InputArray points0, InputArray points1, bool *ok=0) CV_OVERRIDE |
Estimates global motion between two 2D point clouds. | |
Public Member Functions inherited from cv::videostab::MotionEstimatorBase | |
virtual | ~MotionEstimatorBase () |
virtual MotionModel | motionModel () const |
virtual void | setMotionModel (MotionModel val) |
Sets motion model. | |
Additional Inherited Members | |
Protected Member Functions inherited from cv::videostab::MotionEstimatorBase | |
MotionEstimatorBase (MotionModel model) | |
Describes a global 2D motion estimation method which minimizes L1 error.
cv::videostab::MotionEstimatorL1::MotionEstimatorL1 | ( | MotionModel | model = MM_AFFINE | ) |
|
virtual |
Estimates global motion between two 2D point clouds.
points0 | Source set of 2D points (32F). |
points1 | Destination set of 2D points (32F). |
ok | Indicates whether motion was estimated successfully. |
Implements cv::videostab::MotionEstimatorBase.