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

improve doc.

This commit is contained in:
KUANG Fangjun
2017-10-30 17:13:59 +01:00
parent 22496742b4
commit 67acfc6e25
7 changed files with 28 additions and 28 deletions
+1 -1
View File
@@ -171,7 +171,7 @@ public:
float ww = 1.f/(Hf[6]*M[i].x + Hf[7]*M[i].y + 1.f);
float dx = (Hf[0]*M[i].x + Hf[1]*M[i].y + Hf[2])*ww - m[i].x;
float dy = (Hf[3]*M[i].x + Hf[4]*M[i].y + Hf[5])*ww - m[i].y;
err[i] = (float)(dx*dx + dy*dy);
err[i] = dx*dx + dy*dy;
}
}
};