Commit c16f018a authored by Andrey Kamaev's avatar Andrey Kamaev

mc

parent 7e2fffb1
...@@ -32,8 +32,8 @@ public class VideoTest extends OpenCVTestCase { ...@@ -32,8 +32,8 @@ public class VideoTest extends OpenCVTestCase {
shift1 = 10; shift1 = 10;
shift2 = 17; shift2 = 17;
w = rgbLena.cols() / 2; w = (int)(rgbLena.cols() / 2);
h = rgbLena.rows() / 2; h = (int)(rgbLena.rows() / 2);
subLena1 = rgbLena.submat(shift1, h + shift1, shift1, w + shift1); subLena1 = rgbLena.submat(shift1, h + shift1, shift1, w + shift1);
subLena2 = rgbLena.submat(shift2, h + shift2, shift2, w + shift2); subLena2 = rgbLena.submat(shift2, h + shift2, shift2, w + shift2);
......
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