image-stitching
image-stitching copied to clipboard
Can it stitch images in horizontal and vertical directions both.
I am working on multiple image stitching where my image is images taken from drone and I need to stitch to create a map. However, most of the implementations i saw can only stitch dominantly in one orientation.
I had this problem here, and I solved it easily by modifying stitch_images function in source code. Instead of defining stitch_direction as int type, let change stitch_direction to list of directions that each couple of images be stitched. I modified as:
pivot_img = utils.stitch_image_pair(pivot_img, join_img, stitch_direc=stitch_direction[i - 1])