mirror of
https://github.com/opencv/opencv.git
synced 2024-11-28 05:06:29 +08:00
fixed bug in Matx::inv(..., DECOMP_SVD) (ticket #1444)
This commit is contained in:
parent
0b907d088d
commit
b20871ce2d
@ -820,7 +820,7 @@ Matx<_Tp, n, m> Matx<_Tp, m, n>::inv(int method) const
|
||||
else
|
||||
{
|
||||
Mat A(*this, false), B(b, false);
|
||||
ok = (0.0 == invert(A, B, method));
|
||||
ok = (invert(A, B, method) != 0);
|
||||
}
|
||||
return ok ? b : Matx<_Tp, n, m>::zeros();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user