1 | initial version |
it's a bit unfortunate, but since Matx has "fixed" memory, it does indeed not support ROI or Range operations.
you can copy your Matx types to "ordinary" Mats, but careful, this is a copy, it won't affect the original Matx.
i guess, you'll have to fall back and assign single elements like
Matx44f a, b;
a(0,0) = b(0,0);
a(0,1) = b(0,1);
...