making CV data type to be int

This commit is contained in:
Andrey Pavlenko
2011-07-22 15:11:35 +00:00
parent 8378ba7554
commit 3d9cb082c9
10 changed files with 163 additions and 192 deletions

View File

@@ -122,7 +122,7 @@ public class OpenCVTestCase extends TestCase {
//OpenCVTestRunner.Log(m1.toString());
//OpenCVTestRunner.Log(m2.toString());
if (!m1.type().equals(m2.type()) ||
if (m1.type() != m2.type() ||
m1.cols() != m2.cols() || m1.rows() != m2.rows()) {
throw new UnsupportedOperationException();
}