This commit is contained in:
Vadim Pisarevsky
2012-09-04 13:34:52 +04:00
parent a08290d843
commit a74a2302aa
2 changed files with 14 additions and 0 deletions

View File

@@ -766,6 +766,19 @@ bool CV_OperationsTest::TestTemplateMat()
Mat c = (a*b.t()).t();
CV_Assert( norm(c, CV_L1) == 4. );
}
bool badarg_catched = false;
try
{
Mat m1 = Mat::zeros(1, 10, CV_8UC1);
Mat m2 = Mat::zeros(10, 10, CV_8UC3);
m1.copyTo(m2.row(1));
}
catch(const Exception& e)
{
badarg_catched = true;
}
CV_Assert( badarg_catched );
}
catch (const test_excep& e)
{