Scenario
const matC3 = new cv.Mat([
[[255, 255, 255], [255, 255, 255], [255, 255, 255]],
[[0, 0, 0], [0, 0, 0], [0, 0, 0]]
], cv.CV_8UC3);
const region = matC3.getRegion(new cv.Rect(0, 0, 2, 2));
const buf = region.getData();
console.log(new Uint8Array(buf)[6], region.getDataAsArray()[1][0][0])
Actual
prints
Expected
should print
May be related to #402 ?
Scenario
Actual
prints
Expected
should print
May be related to #402 ?