1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-21 19:33:03 +04:00

Merge pull request #8574 from elmewo:fix-affine-constructor

fix creation homogeneous affine matrix when constructing from 4x3 cv::Mat
This commit is contained in:
Alexander Alekhin
2017-04-25 19:04:51 +03:00
committed by GitHub
+5 -3
View File
@@ -203,11 +203,13 @@ cv::Affine3<T>::Affine3(const cv::Mat& data, const Vec3& t)
{
rotation(data(Rect(0, 0, 3, 3)));
translation(data(Rect(3, 0, 1, 3)));
return;
}
else
{
rotation(data);
translation(t);
}
rotation(data);
translation(t);
matrix.val[12] = matrix.val[13] = matrix.val[14] = 0;
matrix.val[15] = 1;
}