-
Notifications
You must be signed in to change notification settings - Fork 52
Description
Hi - thank you for this great library which I just found.
I am stitching 266 images of size 1920x1200 in a grid of 19x14.
I have been reading through the docs, and it seems that the arrayjoin function is what I need. What I however don't understand is that arrayjoin seems to not have any notion of overlaps and for that purpose I should write my own loop which stitches horizontally and then vertically using merge.
I have however also read that merge is slower and less efficient than arrayjoin - and I really like the idea of just supplying all the tiles to an arrayjoin function which optimally stitches all tiles in a desired grid.
Furthermore I have a bit of vignetting on my tiles, so I would like to cut away a frame from each tile which also would seem like something a function like arrayjoin should be able to do.
So my question is if I have misunderstood something or can I somehow do more clever stitching with arrayjoin, or should I use a completely different technique?
Again, thanks for a nice library