test_excep         86 modules/core/test/test_operations.cpp         if (cvtest::norm(m1, m2, NORM_INF) != 0) throw test_excep(s);
test_excep         90 modules/core/test/test_operations.cpp         if (cvtest::norm(m1, m2, NORM_INF) > 1e-5) throw test_excep(s);
test_excep        428 modules/core/test/test_operations.cpp     catch (const test_excep& e)
test_excep        456 modules/core/test/test_operations.cpp     catch (const test_excep& e)
test_excep        493 modules/core/test/test_operations.cpp     catch (const test_excep& e)
test_excep        657 modules/core/test/test_operations.cpp         if (sum != 0) throw test_excep();
test_excep        663 modules/core/test/test_operations.cpp         if (Mat_<Point2f>(1, 1).elemSize1() != sizeof(float)) throw test_excep();
test_excep        664 modules/core/test/test_operations.cpp         if (Mat_<Point2f>(1, 1).elemSize() != 2 * sizeof(float)) throw test_excep();
test_excep        665 modules/core/test/test_operations.cpp         if (Mat_<Point2f>(1, 1).depth() != CV_32F) throw test_excep();
test_excep        666 modules/core/test/test_operations.cpp         if (Mat_<float>(1, 1).depth() != CV_32F) throw test_excep();
test_excep        667 modules/core/test/test_operations.cpp         if (Mat_<int>(1, 1).depth() != CV_32S) throw test_excep();
test_excep        668 modules/core/test/test_operations.cpp         if (Mat_<double>(1, 1).depth() != CV_64F) throw test_excep();
test_excep        669 modules/core/test/test_operations.cpp         if (Mat_<Point3d>(1, 1).depth() != CV_64F) throw test_excep();
test_excep        670 modules/core/test/test_operations.cpp         if (Mat_<signed char>(1, 1).depth() != CV_8S) throw test_excep();
test_excep        671 modules/core/test/test_operations.cpp         if (Mat_<unsigned short>(1, 1).depth() != CV_16U) throw test_excep();
test_excep        672 modules/core/test/test_operations.cpp         if (Mat_<unsigned short>(1, 1).channels() != 1) throw test_excep();
test_excep        673 modules/core/test/test_operations.cpp         if (Mat_<Point2f>(1, 1).channels() != 2) throw test_excep();
test_excep        674 modules/core/test/test_operations.cpp         if (Mat_<Point3f>(1, 1).channels() != 3) throw test_excep();
test_excep        675 modules/core/test/test_operations.cpp         if (Mat_<Point3d>(1, 1).channels() != 3) throw test_excep();
test_excep        688 modules/core/test/test_operations.cpp         if(pntMat.stepT() != 2) throw test_excep();
test_excep        695 modules/core/test/test_operations.cpp         if (matFromData(Point(0,0)) != uchar_data[0])throw test_excep();
test_excep        696 modules/core/test/test_operations.cpp         if (mat2(Point(0,0)) != uchar_data[0]) throw test_excep();
test_excep        698 modules/core/test/test_operations.cpp         if (matFromData(0,0) != uchar_data[0])throw test_excep();
test_excep        699 modules/core/test/test_operations.cpp         if (mat2(0,0) != uchar_data[0]) throw test_excep();
test_excep        702 modules/core/test/test_operations.cpp         if (rect.cols != 1 || rect.rows != 1 || rect(0,0) != uchar_data[0]) throw test_excep();
test_excep        742 modules/core/test/test_operations.cpp         if (Mat1b(1, 1).elemSize() != sizeof(uchar)) throw test_excep();
test_excep        743 modules/core/test/test_operations.cpp         if (Mat2b(1, 1).elemSize() != 2 * sizeof(uchar)) throw test_excep();
test_excep        744 modules/core/test/test_operations.cpp         if (Mat3b(1, 1).elemSize() != 3 * sizeof(uchar)) throw test_excep();
test_excep        745 modules/core/test/test_operations.cpp         if (Mat1f(1, 1).elemSize() != sizeof(float)) throw test_excep();
test_excep        746 modules/core/test/test_operations.cpp         if (Mat2f(1, 1).elemSize() != 2 * sizeof(float)) throw test_excep();
test_excep        747 modules/core/test/test_operations.cpp         if (Mat3f(1, 1).elemSize() != 3 * sizeof(float)) throw test_excep();
test_excep        748 modules/core/test/test_operations.cpp         if (Mat1f(1, 1).depth() != CV_32F) throw test_excep();
test_excep        749 modules/core/test/test_operations.cpp         if (Mat3f(1, 1).depth() != CV_32F) throw test_excep();
test_excep        750 modules/core/test/test_operations.cpp         if (Mat3f(1, 1).type() != CV_32FC3) throw test_excep();
test_excep        751 modules/core/test/test_operations.cpp         if (Mat1i(1, 1).depth() != CV_32S) throw test_excep();
test_excep        752 modules/core/test/test_operations.cpp         if (Mat1d(1, 1).depth() != CV_64F) throw test_excep();
test_excep        753 modules/core/test/test_operations.cpp         if (Mat1b(1, 1).depth() != CV_8U) throw test_excep();
test_excep        754 modules/core/test/test_operations.cpp         if (Mat3b(1, 1).type() != CV_8UC3) throw test_excep();
test_excep        755 modules/core/test/test_operations.cpp         if (Mat1w(1, 1).depth() != CV_16U) throw test_excep();
test_excep        756 modules/core/test/test_operations.cpp         if (Mat1s(1, 1).depth() != CV_16S) throw test_excep();
test_excep        757 modules/core/test/test_operations.cpp         if (Mat1f(1, 1).channels() != 1) throw test_excep();
test_excep        758 modules/core/test/test_operations.cpp         if (Mat1b(1, 1).channels() != 1) throw test_excep();
test_excep        759 modules/core/test/test_operations.cpp         if (Mat1i(1, 1).channels() != 1) throw test_excep();
test_excep        760 modules/core/test/test_operations.cpp         if (Mat1w(1, 1).channels() != 1) throw test_excep();
test_excep        761 modules/core/test/test_operations.cpp         if (Mat1s(1, 1).channels() != 1) throw test_excep();
test_excep        762 modules/core/test/test_operations.cpp         if (Mat2f(1, 1).channels() != 2) throw test_excep();
test_excep        763 modules/core/test/test_operations.cpp         if (Mat2b(1, 1).channels() != 2) throw test_excep();
test_excep        764 modules/core/test/test_operations.cpp         if (Mat2i(1, 1).channels() != 2) throw test_excep();
test_excep        765 modules/core/test/test_operations.cpp         if (Mat2w(1, 1).channels() != 2) throw test_excep();
test_excep        766 modules/core/test/test_operations.cpp         if (Mat2s(1, 1).channels() != 2) throw test_excep();
test_excep        767 modules/core/test/test_operations.cpp         if (Mat3f(1, 1).channels() != 3) throw test_excep();
test_excep        768 modules/core/test/test_operations.cpp         if (Mat3b(1, 1).channels() != 3) throw test_excep();
test_excep        769 modules/core/test/test_operations.cpp         if (Mat3i(1, 1).channels() != 3) throw test_excep();
test_excep        770 modules/core/test/test_operations.cpp         if (Mat3w(1, 1).channels() != 3) throw test_excep();
test_excep        771 modules/core/test/test_operations.cpp         if (Mat3s(1, 1).channels() != 3) throw test_excep();
test_excep        813 modules/core/test/test_operations.cpp     catch (const test_excep& e)
test_excep        838 modules/core/test/test_operations.cpp         if (mat.dims() != dims) throw test_excep();
test_excep        839 modules/core/test/test_operations.cpp         if (mat.channels() != 2) throw test_excep();
test_excep        840 modules/core/test/test_operations.cpp         if (mat.depth() != CV_32F) throw test_excep();
test_excep        844 modules/core/test/test_operations.cpp     catch (const test_excep&)
test_excep        863 modules/core/test/test_operations.cpp         if(res.x != 8.0) throw test_excep();
test_excep        864 modules/core/test/test_operations.cpp         if(res.y != 5.0) throw test_excep();
test_excep        865 modules/core/test/test_operations.cpp         if(res.z != 1.0) throw test_excep();
test_excep        867 modules/core/test/test_operations.cpp         if(res2[0] != 14.0) throw test_excep();
test_excep        868 modules/core/test/test_operations.cpp         if(res2[1] != 6.0) throw test_excep();
test_excep        869 modules/core/test/test_operations.cpp         if(res2[2] != 1.0) throw test_excep();
test_excep        877 modules/core/test/test_operations.cpp         if(sf[0] != 10.0) throw test_excep();
test_excep        878 modules/core/test/test_operations.cpp         if(sf[1] != 6.0) throw test_excep();
test_excep        879 modules/core/test/test_operations.cpp         if(sf[2] != 3.0) throw test_excep();
test_excep        880 modules/core/test/test_operations.cpp         if(sf[3] != 1.0) throw test_excep();
test_excep        882 modules/core/test/test_operations.cpp         if(sd[0] != 10.0) throw test_excep();
test_excep        883 modules/core/test/test_operations.cpp         if(sd[1] != 6.0) throw test_excep();
test_excep        884 modules/core/test/test_operations.cpp         if(sd[2] != 3.0) throw test_excep();
test_excep        885 modules/core/test/test_operations.cpp         if(sd[3] != 1.0) throw test_excep();
test_excep        887 modules/core/test/test_operations.cpp     catch(const test_excep&)
test_excep        904 modules/core/test/test_operations.cpp         if(res(0, 0) != 1.0) throw test_excep();
test_excep        905 modules/core/test/test_operations.cpp         if(res(0, 1) != 2.0) throw test_excep();
test_excep        906 modules/core/test/test_operations.cpp         if(res(1, 0) != 3.0) throw test_excep();
test_excep        907 modules/core/test/test_operations.cpp         if(res(1, 1) != 4.0) throw test_excep();
test_excep        909 modules/core/test/test_operations.cpp     catch(const test_excep&)
test_excep        939 modules/core/test/test_operations.cpp     catch(const test_excep&)
test_excep        953 modules/core/test/test_operations.cpp         if (!(p1     == p2)) throw test_excep();
test_excep        954 modules/core/test/test_operations.cpp         if (!(p2 * 2 == p4)) throw test_excep();
test_excep        955 modules/core/test/test_operations.cpp         if (!(p2 * 2.f == p4)) throw test_excep();
test_excep        956 modules/core/test/test_operations.cpp         if (!(p2 * 2.f == p4)) throw test_excep();
test_excep        960 modules/core/test/test_operations.cpp         if (!(pi1     == pi2)) throw test_excep();
test_excep        961 modules/core/test/test_operations.cpp         if (!(pi2 * 2 == pi4)) throw test_excep();
test_excep        962 modules/core/test/test_operations.cpp         if (!(pi2 * 2.f == pi4)) throw test_excep();
test_excep        963 modules/core/test/test_operations.cpp         if (!(pi2 * 2.f == pi4)) throw test_excep();
test_excep        967 modules/core/test/test_operations.cpp         if (!(v12 == v22)) throw test_excep();
test_excep        971 modules/core/test/test_operations.cpp         if (!(v13 == v23)) throw test_excep();
test_excep        975 modules/core/test/test_operations.cpp         if (!(v14 == v24)) throw test_excep();
test_excep        978 modules/core/test/test_operations.cpp         if (sz.area() != 200) throw test_excep();
test_excep        979 modules/core/test/test_operations.cpp         if (sz.width != 10 || sz.height != 20) throw test_excep();
test_excep        980 modules/core/test/test_operations.cpp         if (((CvSize)sz).width != 10 || ((CvSize)sz).height != 20) throw test_excep();
test_excep        992 modules/core/test/test_operations.cpp                 throw test_excep();
test_excep       1006 modules/core/test/test_operations.cpp             throw test_excep();
test_excep       1012 modules/core/test/test_operations.cpp             throw test_excep();
test_excep       1042 modules/core/test/test_operations.cpp     catch(const test_excep&)
test_excep       1070 modules/core/test/test_operations.cpp             throw test_excep();
test_excep       1074 modules/core/test/test_operations.cpp             throw test_excep();
test_excep       1102 modules/core/test/test_operations.cpp             throw test_excep();
test_excep       1104 modules/core/test/test_operations.cpp     catch(const test_excep&)
test_excep        573 modules/core/test/test_umat.cpp             throw test_excep(s);
test_excep        578 modules/core/test/test_umat.cpp             throw test_excep(s);
test_excep        680 modules/core/test/test_umat.cpp     catch (const test_excep& e)