1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-31 00:03:03 +04:00
This commit is contained in:
Alexander Alekhin
2016-11-17 18:41:39 +03:00
parent 40aa8aa862
commit 30cdcfa554
6 changed files with 15 additions and 6 deletions
+1 -1
View File
@@ -447,7 +447,7 @@ int decomposeHomographyMat(InputArray _H,
Mat K = _K.getMat().reshape(1, 3);
CV_Assert(K.cols == 3 && K.rows == 3);
auto_ptr<HomographyDecomp> hdecomp(new HomographyDecompInria);
cv::Ptr<HomographyDecomp> hdecomp(new HomographyDecompInria);
vector<CameraMotion> motions;
hdecomp->decomposeHomography(H, K, motions);