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

fix creation homogeneous affine matrix when constructing from 4x3 cv::Mat
pull/8695/head
Alexander Alekhin 8 years ago committed by GitHub
commit 91a6940930
  1. 8
      modules/core/include/opencv2/core/affine.hpp

@ -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;
}

Loading…
Cancel
Save