python3 merge.py [args]
Arguments:
-r
/--reverse
: Reverses the list of images that are being added together, so the output will be backwards.
-v
/--vertical
: Adds the images from top to bottom instead of left to right (can go from bottom to top if the -r
/--reverse
argument is supplied).
Horizontal (python3 merge.py
)
Horizontal and reversed (python3 merge.py -r
)
Vertical (python3 merge.py -v
)
Vertical and reversed (python3 merge.py -r -v
)