determinant       294 3rdparty/openexr/Imath/ImathMatrix.h     T                   determinant() const;
determinant       668 3rdparty/openexr/Imath/ImathMatrix.h     T                   determinant() const;
determinant      1683 3rdparty/openexr/Imath/ImathMatrix.h Matrix33<T>::determinant () const
determinant      2913 3rdparty/openexr/Imath/ImathMatrix.h     return working.determinant();
determinant      2918 3rdparty/openexr/Imath/ImathMatrix.h Matrix44<T>::determinant () const
determinant       767 3rdparty/openexr/Imath/ImathMatrixAlgo.cpp         if (U.determinant() < 0)
determinant       774 3rdparty/openexr/Imath/ImathMatrixAlgo.cpp         if (V.determinant() < 0)
determinant       879 3rdparty/openexr/Imath/ImathMatrixAlgo.cpp         if (U.determinant() < 0)
determinant       886 3rdparty/openexr/Imath/ImathMatrixAlgo.cpp         if (V.determinant() < 0)
determinant      1329 modules/calib3d/src/fisheye.cpp     if (determinant(R) < 0)
determinant       602 modules/calib3d/src/five-point.cpp     if (determinant(U) < 0) U *= -1.;
determinant       603 modules/calib3d/src/five-point.cpp     if (determinant(Vt) < 0) Vt *= -1.;
determinant       104 modules/calib3d/src/fundam.cpp                 negative += determinant(A)*determinant(B) < 0;
determinant       137 modules/calib3d/src/homography_decomp.cpp     return (fabs(determinant(R) - 1.0) < epsilon);
determinant      1486 modules/calib3d/test/test_cameracalibration.cpp             abs(determinant(F)) > 0.01)
determinant       309 modules/calib3d/test/test_fisheye.cpp     if (cv::determinant(R) < 0)
determinant      1053 modules/calib3d/test/test_fundam.cpp     f_prop2[2] = cv::determinant( F );
determinant      1673 modules/core/include/opencv2/core.hpp CV_EXPORTS_W double determinant(InputArray mtx);
determinant       263 modules/core/include/opencv2/core/matx.hpp template<typename _Tp, int m> static double determinant(const Matx<_Tp, m, m>& a);
determinant        85 modules/core/include/opencv2/core/operations.hpp         _Tp d = determinant(a);
determinant       101 modules/core/include/opencv2/core/operations.hpp         _Tp d = (_Tp)determinant(a);
determinant       140 modules/core/include/opencv2/core/operations.hpp         _Tp d = determinant(a);
determinant       155 modules/core/include/opencv2/core/operations.hpp         _Tp d = (_Tp)determinant(a);
determinant       329 modules/core/misc/java/test/CoreTest.java         double det = Core.determinant(mat);
determinant      1528 modules/core/src/lapack.cpp     return cv::determinant(cv::cvarrToMat(arr));
determinant      1035 modules/core/test/test_operations.cpp         double d = determinant(m44);
determinant      1326 modules/imgproc/src/min_enclosing_triangle.cpp     double determinant = posTerm - negTerm;
determinant      1328 modules/imgproc/src/min_enclosing_triangle.cpp     return std::abs(determinant) / 2;
determinant       154 modules/stitching/src/autocalib.cpp         Hs_[i] = Hs[i] / std::pow(determinant(Hs[i]), 1./3.);
determinant       606 modules/stitching/src/matchers.cpp     if (matches_info.H.empty() || std::abs(determinant(matches_info.H)) < std::numeric_limits<double>::epsilon())
determinant       295 modules/stitching/src/motion_estimators.cpp         if (determinant(R) < 0)
determinant       473 modules/stitching/src/motion_estimators.cpp         if (determinant(R) < 0)
determinant       122 modules/video/test/test_estimaterigid.cpp                 dB = cv::determinant(B);