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

several minor fixes proposed by Andrey

This commit is contained in:
Vadim Pisarevsky
2013-03-03 00:54:46 +04:00
parent d925879366
commit 8a6d2bbd3d
5 changed files with 10 additions and 13 deletions
+1 -1
View File
@@ -131,7 +131,7 @@ public:
const Point2f* m = m2.ptr<Point2f>();
double LtL[9][9], W[9][1], V[9][9];
Mat _LtL( 9, 9, CV_64F, LtL );
Mat _LtL( 9, 9, CV_64F, &LtL[0][0] );
Mat matW( 9, 1, CV_64F, W );
Mat matV( 9, 9, CV_64F, V );
Mat _H0( 3, 3, CV_64F, V[8] );