mirror of
https://github.com/opencv/opencv.git
synced 2024-11-25 11:40:44 +08:00
Minor changes in videostab module
This commit is contained in:
parent
02d34bdac2
commit
2799f51bf9
@ -460,9 +460,6 @@ Mat MotionEstimatorL1::estimate(InputArray points0, InputArray points1, bool *ok
|
||||
const int npoints = points0.getMat().checkVector(2);
|
||||
CV_Assert(points1.getMat().checkVector(2) == npoints);
|
||||
|
||||
const Point2f *points0_ = points0.getMat().ptr<Point2f>();
|
||||
const Point2f *points1_ = points1.getMat().ptr<Point2f>();
|
||||
|
||||
#ifndef HAVE_CLP
|
||||
|
||||
CV_Error(CV_StsError, "The library is built without Clp support");
|
||||
@ -475,6 +472,9 @@ Mat MotionEstimatorL1::estimate(InputArray points0, InputArray points1, bool *ok
|
||||
|
||||
// prepare LP problem
|
||||
|
||||
const Point2f *points0_ = points0.getMat().ptr<Point2f>();
|
||||
const Point2f *points1_ = points1.getMat().ptr<Point2f>();
|
||||
|
||||
int ncols = 6 + 2*npoints;
|
||||
int nrows = 4*npoints;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user