I have an image loaded from a file like this:
string FILE_IN = "file.cimg;
CImg<float> image_small;
CImg<float> image_big;
image.load_cimg(file_in);
And I want to copy-paste the exact image in image_small to image_big, but specifying the position (coordinates) where to do it.
I have looked at the functions in the library, but I only find assign()
or get_shared()
, which don't accept this options.