Hi, I have an array of images and I simply want to merge them into one, efficiently.
Say that my array has 6 images, I would want to form something like;
1 2 or 1 2 3
3 4 4 5 6
5 6
At the time I’m doing this with nested loops and it seems unnecessary, there should be an easier way, like reshape(arr, (2, 3))
and merge them together at the same time.