提交 8fa1e756 编写于 作者: R Roman Donchenko 提交者: OpenCV Buildbot

Merge pull request #993 from ivan-korolev:fix_videostab_bug_3023

...@@ -205,6 +205,9 @@ Mat estimateGlobalMotionRobust( ...@@ -205,6 +205,9 @@ Mat estimateGlobalMotionRobust(
estimateGlobMotionLeastSquaresAffine }; estimateGlobMotionLeastSquaresAffine };
const int npoints = static_cast<int>(points0.size()); const int npoints = static_cast<int>(points0.size());
if (npoints < params.size)
return Mat::eye(3, 3, CV_32F);
const int niters = static_cast<int>(ceil(log(1 - params.prob) / const int niters = static_cast<int>(ceil(log(1 - params.prob) /
log(1 - pow(1 - params.eps, params.size)))); log(1 - pow(1 - params.eps, params.size))));
...@@ -300,6 +303,8 @@ PyrLkRobustMotionEstimator::PyrLkRobustMotionEstimator() ...@@ -300,6 +303,8 @@ PyrLkRobustMotionEstimator::PyrLkRobustMotionEstimator()
Mat PyrLkRobustMotionEstimator::estimate(const Mat &frame0, const Mat &frame1) Mat PyrLkRobustMotionEstimator::estimate(const Mat &frame0, const Mat &frame1)
{ {
detector_->detect(frame0, keypointsPrev_); detector_->detect(frame0, keypointsPrev_);
if (keypointsPrev_.empty())
return Mat::eye(3, 3, CV_32F);
pointsPrev_.resize(keypointsPrev_.size()); pointsPrev_.resize(keypointsPrev_.size());
for (size_t i = 0; i < keypointsPrev_.size(); ++i) for (size_t i = 0; i < keypointsPrev_.size(); ++i)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册