OpenCV 4.11.0
开源计算机视觉库
加载中…
搜索中…
无匹配项
cv::videostab::MotionEstimatorL1 类参考

描述一种全局二维运动估计方法,该方法最小化L1误差。更多…

#include <opencv2/videostab/global_motion.hpp>

cv::videostab::MotionEstimatorL1 的协作图

公有成员函数

 MotionEstimatorL1 (MotionModel model=MM_AFFINE)
 
虚函数 Mat estimate (InputArray points0, InputArray points1, bool *ok=0) CV_OVERRIDE
 估计两个二维点云之间的全局运动。
 
- 继承自 cv::videostab::MotionEstimatorBase 的公有成员函数
虚函数 ~MotionEstimatorBase ()
 
虚函数 MotionModel motionModel () const
 
虚函数 void setMotionModel (MotionModel val)
 设置运动模型。
 

其他继承成员

- 继承自 cv::videostab::MotionEstimatorBase 的保护成员函数
 MotionEstimatorBase (MotionModel model)
 

详细描述

描述一种全局二维运动估计方法,该方法最小化L1误差。

注意
要使用此方法,必须使用 CLP 库支持构建 OpenCV。

构造函数和析构函数文档

◆ MotionEstimatorL1()

cv::videostab::MotionEstimatorL1::MotionEstimatorL1 ( MotionModel model = MM_AFFINE)

成员函数文档

◆ estimate()

虚函数 Mat cv::videostab::MotionEstimatorL1::estimate ( InputArray points0,
InputArray points1,
bool * ok = 0 )
虚函数

估计两个二维点云之间的全局运动。

参数
points0源二维点集 (32F)。
points1目标二维点集 (32F)。
ok指示是否成功估计运动。
返回值
3x3 二维变换矩阵 (32F)。

实现 cv::videostab::MotionEstimatorBase


此类的文档是从以下文件生成的