image-stitching icon indicating copy to clipboard operation
image-stitching copied to clipboard

Can it stitch images in horizontal and vertical directions both.

Open ceyxasm opened this issue 3 years ago • 1 comments

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.

ceyxasm avatar Feb 05 '23 16:02 ceyxasm

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])

phamminhhanhuet avatar Jan 04 '24 07:01 phamminhhanhuet