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

Solve Issue 7063

consequences of changes

accuracy test

Solve issue 7063
This commit is contained in:
LaurentBerger
2016-08-09 16:00:03 +02:00
parent 44bda8fbb7
commit b75bac7975
4 changed files with 32 additions and 33 deletions
-3
View File
@@ -51,9 +51,6 @@ static inline bool decomposeCholesky(double* A, size_t astep, int m)
{
if (!hal::Cholesky64f(A, astep, m, 0, 0, 0))
return false;
astep /= sizeof(A[0]);
for (int i = 0; i < m; ++i)
A[i*astep + i] = (double)(1./A[i*astep + i]);
return true;
}