How might I go about compositing:
image A (8x8 RGB) with top left corner at (0,0).
image B (4x4 RGB) with top left corner at (6,6).
By simply adding RGB values?
I guess I need to start by creating a (black) RGB canvas of size (10,10), and add each image at its respective location.
But how to accomplish that second step?
Now what if the offset is (6.3, 6.3)? Is there a technique that handles sub-pixel superposition?
EDIT: cvSetImageROI
maybe?