The Java bindings have Core.bitshift_and(), Core.bitshift_or(), and Core.bitshift_xor(), but what about bitshifting? Is it possible to bitshift a Mat without iterating through its entries?
I've seen C code before that looks like:
Mat mat8uc4 = merge((mat32sc1 >> 16) & 0xFF, (mat32sc1 >> 8) & 0xFF, (mat32sc1 >> 0) & 0xFF,(mat32sc1 >> 24) & 0xFF);
and I want to do the same thing in Java.