added tests for #1373, #2629, #2719; fixed another bug in determinant(Matx<T,n,n>)

This commit is contained in:
Vadim Pisarevsky
2013-01-28 17:27:08 +04:00
parent 1df10553bb
commit 146ca61a27
2 changed files with 18 additions and 1 deletions

View File

@@ -721,7 +721,7 @@ template<typename _Tp, int m> struct CV_EXPORTS Matx_DetOp
return p;
for( int i = 0; i < m; i++ )
p *= temp(i, i);
return p;
return 1./p;
}
};