Commit e76ad550 authored by Kirill Kornyakov's avatar Kirill Kornyakov

java tests: bugfix in hconcat

parent eafa837e
......@@ -452,7 +452,7 @@ public class coreTest extends OpenCVTestCase {
public void testHconcat() {
Mat e = Mat.eye(3, 3, CvType.CV_8UC1);
Mat eConcat = new Mat(1, 9, CvType.CV_8UC1);
eConcat.put(0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1);
eConcat.put(0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1);
core.hconcat(e, dst);
assertMatEqual(eConcat, dst);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment