Scaling Issue #263
Unanswered
chrisgrill
asked this question in
Q&A
Replies: 1 comment 6 replies
-
If the camera is only translated you should use affine stitching |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to stitch together images that have been collected by pulling a camera over an object of interest. All the images are the same size and only represent translations of the camera.
The issue I am seeing is that the final stitched image has a "tailing off" effect where each image is slightly smaller than the one before it.
The scaling happens somewhere in here:
warped_low_imgs = list(warper.warp_images(low_imgs, cameras, camera_aspect)) warped_low_masks = list(warper.create_and_warp_masks(low_sizes, cameras, camera_aspect)) low_corners, low_sizes = warper.warp_rois(low_sizes, cameras, camera_aspect)
I used the example Jupyter notebook to try to troubleshoot this. Here is the mask:
Any help or suggestions greatly appreciated.
Beta Was this translation helpful? Give feedback.
All reactions