Merge pull request #7710 from alalek:debug_check_matrelease

This commit is contained in:
Vadim Pisarevsky
2016-11-25 14:24:23 +00:00
3 changed files with 15 additions and 3 deletions
+1 -1
View File
@@ -494,7 +494,7 @@ public class MatTest extends OpenCVTestCase {
public void testIsSubmatrix() {
assertFalse(gray0.isSubmatrix());
Mat subMat = gray0.submat(0, 0, gray0.rows() / 2, gray0.cols() / 2);
Mat subMat = gray0.submat(0, gray0.rows() / 2, 0, gray0.cols() / 2);
assertTrue(subMat.isSubmatrix());
}